mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
15 lines
289 B
Go
15 lines
289 B
Go
package plugin
|
|
|
|
import (
|
|
"github.com/ipfs/kubo/repo/fsrepo"
|
|
)
|
|
|
|
// PluginDatastore is an interface that can be implemented to add handlers for
|
|
// for different datastores
|
|
type PluginDatastore interface {
|
|
Plugin
|
|
|
|
DatastoreTypeName() string
|
|
DatastoreConfigParser() fsrepo.ConfigFromMap
|
|
}
|