chore: splitting monolith into packages

This commit is contained in:
2026-04-02 17:22:55 +02:00
parent 3d61c78c35
commit be1dd05d9b
9 changed files with 171 additions and 116 deletions

7
utils/err_checker.go Normal file
View File

@@ -0,0 +1,7 @@
package utils
func Check(e error) {
if e != nil {
panic(e)
}
}