begin new and last rework

This commit is contained in:
2024-07-18 14:44:29 +02:00
parent abfc997ac1
commit 1a976fc9ef
26 changed files with 444 additions and 101 deletions

View File

@@ -0,0 +1,11 @@
using OwnChar.ServerNew.Api.Endpoint;
using Pilz.Plugins.Advanced;
namespace OwnChar.ServerNew.Api.Plugins;
public abstract class ApiEndpointFeature(string identifier) : PluginFeature(FeatureType, identifier), IApiEndpoint
{
public static string FeatureType => "ownchar.server.apiep";
public abstract void Initialize(IApiBuilder builder);
}