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