zotan.pw-web/zotan.pw-web/well-known/Pronouns.cs
2022-11-20 22:26:21 +01:00

9 lines
203 B
C#

using Microsoft.AspNetCore.Mvc;
namespace zotanpw_web.well_known;
[ApiController, Route("/.well-known/pronouns")]
public class Pronouns : Controller {
[HttpGet]
public string Get() => "she/they\n";
}