refactor: rename motrd to motr

This commit is contained in:
Prad Nukala
2024-09-30 22:21:44 -04:00
parent ffb67f0a6d
commit d6676ce551
7 changed files with 15 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
package main
func main() {
rootCmd := NewRootCmd()
rootCmd.AddCommand(NewProxyCmd())
if err := rootCmd.Execute(); err != nil {
panic(err)
}
}