Files
zire/bluePrint.go

15 lines
173 B
Go
Raw Normal View History

2026-03-06 00:07:44 +08:00
package lab
import (
"github.com/zire"
)
type Application struct{}
func (a *Application) start() {}
func test() {
app := zire.Karmaforge[Application]()
app.start()
}