9 lines
192 B
C#
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);
|
|
}
|