mercury/web/api/posts/module.go

14 lines
155 B
Go
Raw Normal View History

package posts
import "git.sleepycat.moe/sam/mercury/web/app"
type App struct {
*app.App
}
func New(app *app.App) *App {
return &App{
App: app,
}
}