mirror of
https://gitee.com/energye/energy.git
synced 2024-12-04 20:58:21 +08:00
33 lines
614 B
Go
33 lines
614 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under Apache License Version 2.0, January 2004
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
// 构建编译 energy 项目
|
|
|
|
package internal
|
|
|
|
import "github.com/energye/energy/v2/cmd/internal/command"
|
|
|
|
var CmdBuild = &command.Command{
|
|
UsageLine: "build",
|
|
Short: "build energy project",
|
|
Long: `
|
|
Building energy project
|
|
. Execute default command
|
|
`,
|
|
}
|
|
|
|
func init() {
|
|
CmdBuild.Run = runBuild
|
|
}
|
|
|
|
func runBuild(c *command.Config) error {
|
|
return nil
|
|
}
|