diff --git a/web/api.go b/web/api.go new file mode 100644 index 0000000..3a9a137 --- /dev/null +++ b/web/api.go @@ -0,0 +1,13 @@ +package web + +import "mapserver/app" + +type Api struct { + Context *app.App +} + +func NewApi(ctx *app.App) *Api { + return &Api{ + Context: ctx, + } +}