Files
gorpg/konstructor/entity/entity.engine.go

13 lines
185 B
Go

package entity
type EngineArgs struct {
Domain DomainInterface
KContext *KContext
Settings *Settings
}
type EngineWrapperInterface interface {
Init(options EngineArgs)
Run()
}