1
0
forked from MTSR/mapserver
mapserver/web/api.go
2021-04-12 13:55:10 +02:00

14 lines
144 B
Go

package web
import "mapserver/app"
type Api struct {
Context *app.App
}
func NewApi(ctx *app.App) *Api {
return &Api{
Context: ctx,
}
}