apc-p15-tool/cmd/install_only/main.go

16 lines
263 B
Go
Raw Normal View History

2024-02-02 23:35:21 +00:00
package main
import (
"apc-p15-tool/pkg/app"
"os"
)
// a version of the tool that always calls the `install` subcommand
func main() {
// insert install command
args := []string{os.Args[0], "install"}
args = append(args, os.Args[1:]...)
app.Start(args)
}