Ai
1 Star 0 Fork 0

api-go/govendor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gb.go 674 Bytes
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package migrate
import (
"errors"
"path/filepath"
)
func init() {
register("gb", sysGb{})
}
type sysGb struct{}
func (sys sysGb) Check(root string) (system, error) {
if hasDirs(root, "src", filepath.Join("vendor", "src")) {
return sys, nil
}
return nil, nil
}
func (sysGb) Migrate(root string) error {
// Move files from "src" to first GOPATH.
// Move vendor files from "vendor/src" to "vendor".
// Translate "vendor/manifest" to vendor.json file.
return errors.New("Migrate gb not implemented")
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/netscript/govendor.git
git@gitee.com:netscript/govendor.git
netscript
govendor
govendor
v1.0.9

搜索帮助