mirror of
https://github.com/ipfs/kubo.git
synced 2025-05-17 06:57:40 +08:00
15 lines
290 B
Go
15 lines
290 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
|
|
}
|