14 lines
175 B
Go
14 lines
175 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) > 1 && os.Args[1] == "version" {
|
|
fmt.Println("alt dev")
|
|
return
|
|
}
|
|
fmt.Println("ALT operator CLI")
|
|
}
|