Initial source commit

This commit is contained in:
2026-05-03 19:23:27 +02:00
parent b27b9add45
commit 106e5c3dc5
10 changed files with 511 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package simpleorm_test
import (
"os"
"testing"
log "gitlab.com/gdulai/simpleloglvl"
)
func TestMain(m *testing.M) {
log.SetupLogs("Debug")
code := m.Run()
os.Exit(code)
}