mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 04:36:09 +08:00
14 lines
288 B
Go
14 lines
288 B
Go
![]() |
package bootstrap
|
||
|
|
||
|
import (
|
||
|
"github.com/OpenListTeam/OpenList/v5/internal/driver"
|
||
|
driverS "github.com/OpenListTeam/OpenList/v5/shared/driver"
|
||
|
"github.com/hashicorp/go-plugin"
|
||
|
)
|
||
|
|
||
|
func InitDriverPlugins() {
|
||
|
driver.PluginMap = map[string]plugin.Plugin{
|
||
|
"grpc": &driverS.Plugin{},
|
||
|
}
|
||
|
}
|