mycroforge/MycroForge.CLI/My.Plugin/HelloWorldCommandPlugin.cs
2024-07-23 22:04:51 +02:00

15 lines
420 B
C#

using Microsoft.Extensions.DependencyInjection;
using MycroForge.Core.Contract;
using RootCommand = MycroForge.Core.RootCommand;
namespace My.Plugin;
public class HelloWorldCommandPlugin : ICommandPlugin
{
public string Name => "My.Plugin";
public void RegisterServices(IServiceCollection services)
{
services.AddScoped<ISubCommandOf<RootCommand>, HelloWorldCommand>();
}
}