Files
Server/OwnChar.Server/Api/Endpoint/IApiBuilder.cs
2024-08-15 09:20:20 +02:00

9 lines
192 B
C#

namespace OwnChar.Server.Api.Endpoint;
public interface IApiBuilder
{
public IReadOnlyDictionary<ApiMapInfo, Delegate> Handlers { get; }
void Map(string path, Delegate action);
}