mirror of
https://github.com/Luzifer/ots.git
synced 2025-01-02 02:56:23 -05: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)
|
||
|
}
|
||
|
}
|