using FreeCode.Core.Models; namespace FreeCode.Commands; public sealed class FeedbackCommand : CommandBase { public override string Name => "feedback"; public override string Description => "Submit feedback."; public override FreeCode.Core.Enums.CommandCategory Category => FreeCode.Core.Enums.CommandCategory.Local; public override Task ExecuteAsync(CommandContext context, string? args = null, CancellationToken ct = default) => CommandExecutionHelper.ExecuteAsync(Name, context, args, ct); }