rename settings to config

This commit is contained in:
2023-07-07 18:10:15 +02:00
parent 1db9417dbb
commit 05ec82d8e8
7 changed files with 22 additions and 22 deletions

View File

@@ -3,7 +3,7 @@ package konstructor
type Konstructor struct {
Domain DomainInterface
KContext *KContext
Settings *Settings
Config *Config
EngineWrapper EngineWrapperInterface
}
@@ -12,7 +12,7 @@ func (k Konstructor) Init() {
k.EngineWrapper.Init(EngineArgs{
Domain: k.Domain,
KContext: k.KContext,
Settings: k.Settings,
Config: k.Config,
})
k.EngineWrapper.Run()
}