Files
gorpg/konstructor/interface.engine.go

13 lines
190 B
Go

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