Module for interoperability with third-party applications
| 31 | |
| 32 | // Module for interoperability with third-party applications |
| 33 | type Interoperability struct { |
| 34 | mgr *mgr.Manager |
| 35 | instance instance |
| 36 | cfgDnsNameServers config.StringArrayOption |
| 37 | dnsListenAddress string |
| 38 | interopModules []interopModule |
| 39 | verdictHandlerRegistered atomic.Bool |
| 40 | } |
| 41 | |
| 42 | // Manager returns the module manager. |
| 43 | func (u *Interoperability) Manager() *mgr.Manager { |
nothing calls this directly
no outgoing calls
no test coverage detected