7 lines
123 B
C#
7 lines
123 B
C#
namespace OwnChar.ServerNew.Api.Endpoint;
|
|
|
|
public interface IApiBuilder
|
|
{
|
|
void Map(string path, Delegate action);
|
|
}
|