using Microsoft.Extensions.DependencyInjection; using MycroForge.Core.Contract; using RootCommand = MycroForge.Core.RootCommand; namespace MycroForge.PluginTemplate; public class ExampleCommandPlugin : ICommandPlugin { public string Name => "MycroForge.PluginTemplate"; public void RegisterServices(IServiceCollection services) { services.AddScoped, ExampleCommand>(); } }