Files
Server/OwnChar.Server/Api/Endpoint/IApiBuilder.cs
Schedel Pascal 82485da5d2 uff, lot of work
2024-08-02 11:47:33 +02:00

10 lines
202 B
C#

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