| 104 | } |
| 105 | |
| 106 | type Plugin interface { |
| 107 | GetName() string |
| 108 | GetManifest() *Manifest |
| 109 | GetVersion() int |
| 110 | RegisterRPC(*rpc.Server) |
| 111 | } |
| 112 | type appPlugin interface { |
| 113 | Plugin |
| 114 | Start(*AppConfig) error |
no outgoing calls
no test coverage detected