| 1 | package plugin |
| 2 | |
| 3 | import ( |
| 4 | coreiface "github.com/ipfs/kubo/core/coreiface" |
| 5 | ) |
| 6 | |
| 7 | // PluginDaemon is an interface for daemon plugins. These plugins will be run on |
| 8 | // the daemon and will be given access to an implementation of the CoreAPI. |
| 9 | type PluginDaemon interface { |
| 10 | Plugin |
| 11 | |
| 12 | Start(coreiface.CoreAPI) error |
| 13 | } |