OSIntegration module provides special integration with the OS.
| 7 | |
| 8 | // OSIntegration module provides special integration with the OS. |
| 9 | type OSIntegration struct { |
| 10 | m *mgr.Manager |
| 11 | |
| 12 | OnInitializedEvent *mgr.EventMgr[struct{}] |
| 13 | |
| 14 | //nolint:unused |
| 15 | os OSSpecific |
| 16 | |
| 17 | instance instance |
| 18 | } |
| 19 | |
| 20 | // New returns a new OSIntegration module. |
| 21 | func New(instance instance) (*OSIntegration, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected