mirror of
https://github.com/gregtwallace/apc-p15-tool.git
synced 2025-01-22 16:14:09 +00:00
16 lines
263 B
Go
16 lines
263 B
Go
|
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)
|
||
|
}
|