bashhub-server/main.go

12 lines
104 B
Go
Raw Normal View History

2020-02-07 16:02:18 +08:00
package main
import (
"github.com/nicksherron/bashhub-server/cmd"
)
func main() {
2020-02-08 00:14:22 +08:00
cmd.Execute()
2020-02-07 16:02:18 +08:00
}