refactor: seperate files, function and structs into seperate packages

This commit is contained in:
Patryk Hegenberg 2025-01-18 14:34:16 +01:00
parent 7f951585c8
commit 5b7775f33e
37 changed files with 547 additions and 677 deletions

13
main.go
View file

@ -1,13 +0,0 @@
package main
import (
"log"
"os"
)
func main() {
if err := rootCmd.Execute(); err != nil {
log.Println(err)
os.Exit(1)
}
}