Initial scaffolding

This commit is contained in:
Gary Kramlich
2021-11-18 01:30:50 -06:00
commit f6493e0d87
7 changed files with 86 additions and 0 deletions

16
version/cmd.go Normal file
View File

@@ -0,0 +1,16 @@
package version
import (
"fmt"
"gitlab.com/beeper/discord/consts"
"gitlab.com/beeper/discord/globals"
)
type Cmd struct{}
func (c *Cmd) Run(g *globals.Globals) error {
fmt.Printf("%s %s\n", consts.Name, String)
return nil
}