package plugin import ( coreiface "gitlab.dms3.io/dms3/interface-go-dms3-core" ) // PluginDaemon is an interface for daemon plugins. These plugins will be run on // the daemon and will be given access to an implementation of the CoreAPI. type PluginDaemon interface { Plugin Start(coreiface.CoreAPI) error }