fix: move main() function to cmd/cmd.go

This commit is contained in:
Guz
2025-03-07 20:35:28 -03:00
parent b0c6d70406
commit 4be737b292
2 changed files with 1 additions and 8 deletions

View File

@@ -27,7 +27,7 @@ func init() {
flag.Parse()
}
func Execute() {
func main() {
ctx := context.Background()
assertions := tinyssert.NewDisabledAssertions()

View File

@@ -1,7 +0,0 @@
package main
import "forge.capytal.company/capytalcode/project-comicverse/cmd"
func main() {
cmd.Execute()
}