1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 11:31:54 +08:00
Files
kubo/plugin/daemon.go
2023-11-29 12:29:59 +01:00

14 lines
307 B
Go

package plugin
import (
coreiface "github.com/ipfs/kubo/core/coreiface"
)
// 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
}