using OwnChar.Api.Packets; namespace OwnChar.Server.Api.Endpoint; public interface IApiBuilder { void MapRequest(string pattern, Delegate action); void Map(string path, Delegate action); }