1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-28 00:39:31 +08:00

plugin: preload git plugin by default

License: MIT
Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
This commit is contained in:
Łukasz Magiera
2018-05-01 13:23:43 +02:00
parent 2162f7e681
commit 47bf883644
2 changed files with 5 additions and 2 deletions

View File

@ -2,10 +2,13 @@ package loader
import (
"github.com/ipfs/go-ipfs/plugin"
pluginipldgit "github.com/ipfs/go-ipfs/plugin/plugins/git"
)
// DO NOT EDIT THIS FILE
// This file is being generated as part of plugin build process
// To change it, modify the plugin/loader/preload.sh
var preloadPlugins = []plugin.Plugin{}
var preloadPlugins = []plugin.Plugin{
pluginipldgit.Plugins[0],
}

View File

@ -3,4 +3,4 @@
#
# name go-path number of the sub-plugin
#ipldgit github.com/ipfs/go-ipfs/plugin/plugins/git 0
ipldgit github.com/ipfs/go-ipfs/plugin/plugins/git 0