13 lines
188 B
Go
13 lines
188 B
Go
package konstructor
|
|
|
|
type EngineArgs struct {
|
|
Domain DomainInterface
|
|
KContext *KContext
|
|
Config *Config
|
|
}
|
|
|
|
type EngineWrapperInterface interface {
|
|
Init(options EngineArgs)
|
|
Run()
|
|
}
|