mirror of
https://github.com/Luzifer/ots.git
synced 2025-03-07 14:25:50 -05:00
14 lines
128 B
Go
14 lines
128 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
var version = "dev"
|
|
|
|
func main() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|