mirror of
https://github.com/LukeHagar/tmi.git
synced 2025-12-06 04:21:49 +00:00
19 lines
210 B
Go
19 lines
210 B
Go
/*
|
|
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"lukehagar/tmi/root"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
rootCmd := root.NewRootCmd()
|
|
|
|
err := rootCmd.Execute()
|
|
if err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|