| 98 | type dynamicLibraryLoader struct{} |
| 99 | |
| 100 | type dynamicLibraryClient struct { |
| 101 | handle unsafe.Pointer |
| 102 | hostAPI *C.cliproxy_host_api |
| 103 | hostCtx unsafe.Pointer |
| 104 | api C.cliproxy_plugin_api |
| 105 | } |
| 106 | |
| 107 | func defaultPluginLoader() pluginLoader { |
| 108 | return dynamicLibraryLoader{} |
nothing calls this directly
no outgoing calls
no test coverage detected