feat: init repo

This commit is contained in:
Rogee
2024-12-18 19:42:10 +08:00
parent c3f965035c
commit b68316a778
46 changed files with 1770 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package main
import (
"testing"
"{{.ModuleName}}/pkg/service/model"
"git.ipao.vip/rogeecn/atom"
)
func Test_GenModel(t *testing.T) {
err := atom.Serve(model.Options()...)
if err != nil {
t.Fatal(err)
}
}