14 Star 126 Fork 35

GVP京东开源 / sbom-tool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
updater.go 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
jdtdevops 提交于 2024-01-22 14:37 . init
// Copyright (c) 2023 Jingdong Technology Information Technology Co., Ltd.
// SBOM-TOOL is licensed under Mulan PSL v2.
// You can use this software according to the terms and conditions of the Mulan PSL v2.
// You may obtain a copy of Mulan PSL v2 at:
// http://license.coscl.org.cn/MulanPSL2
// THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
// EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
// MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
// See the Mulan PSL v2 for more details.
package format
type Updater interface {
Name() string
Update(string) error
Desc() string
}
type updater struct {
name string
desc string
update func(string) error
}
func NewUpdater(name string, desc string, update func(string) error) Updater {
return &updater{name: name, desc: desc, update: update}
}
func (u *updater) Name() string {
return u.name
}
func (u *updater) Update(v string) error {
if u.update != nil {
return u.update(v)
}
return nil
}
func (u *updater) Desc() string {
return u.desc
}
Go
1
https://gitee.com/JD-opensource/sbom-tool.git
git@gitee.com:JD-opensource/sbom-tool.git
JD-opensource
sbom-tool
sbom-tool
v0.1.0

搜索帮助