1 Star 0 Fork 0

linngc / central-mirror

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
maven_index.go 524 Bytes
一键复制 编辑 原始数据 按行查看 历史
linngc 提交于 2024-03-08 17:17 . add:格式化注释
// Package maven
// @Link https://gitee.com/linngc/central-mirror
// @Copyright Copyright (c) 2024 central-mirror CLI
// @Author linngc
// @License
package maven
// GetLibNames 获取已配置的仓库名称信息
// 最终请求示例:http://127.0.0.1:10010/api/maven/getRepository
func (c *MavenProxy) GetLibNames() (libs map[string]string, err error) {
result := make(map[string]string)
for _, repository := range c.cfg.Repository {
id := repository.Id
result[id] = repository.Name
}
return result, nil
}
Go
1
https://gitee.com/linngc/central-mirror.git
git@gitee.com:linngc/central-mirror.git
linngc
central-mirror
central-mirror
bf43de0cf88e

搜索帮助