Files
zire/bluePrint.go
2026-03-06 00:07:44 +08:00

15 lines
173 B
Go

package lab
import (
"github.com/zire"
)
type Application struct{}
func (a *Application) start() {}
func test() {
app := zire.Karmaforge[Application]()
app.start()
}