Merge pull request #5 from LubosD/feature/service-and-state-getters

Add getters for Service and State
This commit is contained in:
saml-dev
2023-03-03 16:31:17 -05:00
committed by GitHub

8
app.go
View File

@@ -273,3 +273,11 @@ func (a *App) Start() {
}
}
}
func (a *App) GetService() *Service {
return a.service
}
func (a *App) GetState() *State {
return a.state
}