初始化捏

This commit is contained in:
des
2026-03-06 00:07:44 +08:00
commit 1271ceeee7
6 changed files with 67 additions and 0 deletions

14
bluePrint.go Normal file
View File

@@ -0,0 +1,14 @@
package lab
import (
"github.com/zire"
)
type Application struct{}
func (a *Application) start() {}
func test() {
app := zire.Karmaforge[Application]()
app.start()
}