13 lines
191 B
Go
13 lines
191 B
Go
package entity
|
|
|
|
type EngineOptions struct {
|
|
Domain DomainInterface
|
|
KContext *KContext
|
|
Settings *Settings
|
|
}
|
|
|
|
type EngineWrapperInterface interface {
|
|
Init(options EngineOptions)
|
|
Run()
|
|
}
|