mercury/web/wellknown/module.go

14 lines
159 B
Go
Raw Normal View History

2023-10-16 15:45:43 +02:00
package wellknown
import "git.sleepycat.moe/sam/mercury/web/app"
type App struct {
*app.App
}
func New(app *app.App) *App {
return &App{
App: app,
}
}