feat: refactor code structure

This commit is contained in:
Steven
2023-02-23 08:22:06 +08:00
parent f77a84a649
commit 0fbbcae872
36 changed files with 768 additions and 936 deletions

14
main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
_ "github.com/mattn/go-sqlite3"
"github.com/boojack/corgi/cmd"
)
func main() {
err := cmd.Execute()
if err != nil {
panic(err)
}
}