blob: 833a98ca16a9891d0e991bc14d328256543bf08d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
using WhatApi.Templates;
namespace WhatApi.Endpoints;
public class GetMapPageEndpoint : BaseEndpoint
{
[HttpGet("~/map")]
public ActionResult GetMapPage() {
return Content(TemplateFulfiller.WebMapPage(), "text/html");
}
}
|