adept/adept.go
Gregory Ballantine 4d77a0e2bc
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Separated the repository initialization into a separate sub-command
2022-09-15 10:04:39 -04:00

11 lines
158 B
Go

package main
import (
"git.metaunix.net/BitGoblin/adept/cmd"
)
// start the app - that's where all the good stuff happens
func main() {
cmd.Execute()
}