Skip to content

Commit

Permalink
fqn for command
Browse files Browse the repository at this point in the history
  • Loading branch information
snixtho committed Sep 9, 2024
1 parent 52522f5 commit bcf1c4c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace EvoSC.Modules.Official.MatchTrackerModule.Controllers;
[Controller]
public class MatchTrackerCommandsController(IMatchTrackerExportService exportService) : EvoScController<ICommandInteractionContext>
{
[ChatCommand("mtexport", "Export all match tracker data to a csv file.")]
[ChatCommand("matchtrackerexport", "Export all match tracker data to a csv file.")]
[CommandAlias("/mtexport", true)]
public Task ExportCsvAsync(string file) => exportService.ExportCsv(file);
}

0 comments on commit bcf1c4c

Please sign in to comment.