mirror of
https://github.com/Luzifer/ots.git
synced 2024-10-01 01:06:09 -04:00
10 lines
102 B
Go
10 lines
102 B
Go
package main
|
|
|
|
import "os"
|
|
|
|
func main() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|