adept/adept.go

11 lines
158 B
Go
Raw Normal View History

2022-08-31 19:56:06 -04:00
package main
import (
"git.metaunix.net/BitGoblin/adept/cmd"
2022-08-31 19:56:06 -04:00
)
// start the app - that's where all the good stuff happens
2022-08-31 19:56:06 -04:00
func main() {
cmd.Execute()
2022-08-31 19:56:06 -04:00
}