forked from MTSR/mapserver
14 lines
144 B
Go
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,
|
|
}
|
|
}
|