mapserver/web/api.go

14 lines
144 B
Go
Raw Normal View History

2021-04-12 14:55:10 +03:00
package web
import "mapserver/app"
type Api struct {
Context *app.App
}
func NewApi(ctx *app.App) *Api {
return &Api{
Context: ctx,
}
}