Files
factoryman/main.go
Raum0x2A cf71d956d2 Minor changes
Spelling error
modified headlessQuery string removing Sprint
2026-05-04 07:35:57 -06:00

15 lines
220 B
Go

package main
import (
"fmt"
"os"
)
func main() {
if len(os.Args) == 1 {
fmt.Println("Use 'start', 'stop', or 'backup' command\nex. factoryman start\nTo configure edit 'config.yml'")
} else {
cliToolMode()
}
}