Core is the core service module.
| 26 | |
| 27 | // Core is the core service module. |
| 28 | type Core struct { |
| 29 | m *mgr.Manager |
| 30 | instance instance |
| 31 | |
| 32 | EventShutdown *mgr.EventMgr[struct{}] |
| 33 | EventRestart *mgr.EventMgr[struct{}] |
| 34 | } |
| 35 | |
| 36 | // Manager returns the manager. |
| 37 | func (c *Core) Manager() *mgr.Manager { |
nothing calls this directly
no outgoing calls
no test coverage detected