mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00
13 lines
362 B
Go
13 lines
362 B
Go
package plugin
|
|
|
|
// Plugin is base interface for all kinds of go-ipfs plugins
|
|
// It will be included in interfaces of different Plugins
|
|
type Plugin interface {
|
|
// Name should return uniqe name of the plugin
|
|
Name() string
|
|
// Version returns current version of the plugin
|
|
Version() string
|
|
// Init is called once when the Plugin is being loaded
|
|
Init() error
|
|
}
|