This commit is contained in:
Young Xu 2023-01-01 23:52:40 +08:00
parent 601d288682
commit 1f85089c79
Signed by: xuthus5
GPG Key ID: A23CF9620CBB55F9
4 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@ package main
import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"gitter.top/xuthus5/coco"
"gitter.top/coco/bootstrap"
)
var (
@ -14,7 +14,7 @@ var (
)
func init() {
rootCmd.AddCommand(coco.Update())
rootCmd.AddCommand(bootstrap.Update())
}
func main() {

View File

@ -1,4 +1,4 @@
package coco
package bootstrap
type Config struct {
Version string `yaml:"version"`

View File

@ -1,4 +1,4 @@
package coco
package bootstrap
import (
"fmt"

2
go.mod
View File

@ -1,4 +1,4 @@
module gitter.top/xuthus5/coco
module gitter.top/coco/bootstrap
go 1.18