From e6181c24124d97f2fbc932b8a68311e625463156 Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:05:52 +0200 Subject: Move dsa related stuff to subfolder --- DiscoBot/Commands/FileHandler.cs | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 DiscoBot/Commands/FileHandler.cs (limited to 'DiscoBot/Commands/FileHandler.cs') diff --git a/DiscoBot/Commands/FileHandler.cs b/DiscoBot/Commands/FileHandler.cs deleted file mode 100644 index 4f8a785..0000000 --- a/DiscoBot/Commands/FileHandler.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Linq; -using System.Threading.Tasks; -using Discord.Commands; - -namespace DiscoBot.Commands -{ - public class FileHandler : ModuleBase - { - //[Command("send"), Summary("fügt Helden hinzu")] - public void AddChar() - { - var msg = Context.Message; - if (msg.Attachments == null) throw new ArgumentException("Es wurde keine Datei angehängt"); - - var attachments = msg.Attachments.ToList(); - - if (!attachments.Any(x => x.Filename.EndsWith(".xml"))) - throw new ArgumentException("Es wurde kein xml Held mitgeschickt"); - - foreach (var attachment in attachments.Where(x => x.Filename.EndsWith(".xml"))) - throw new NotImplementedException("send File to Server"); - } - } -} \ No newline at end of file -- cgit v1.2.3-54-g00ecf