zotan.pw-web/Controllers/well-known/Pronouns.cs

10 lines
212 B
C#

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