10 lines
202 B
C#
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);
|
|
}
|