summaryrefslogtreecommitdiff
path: root/DiscoBot/Commands/FileHandler.cs
diff options
context:
space:
mode:
authoruzvkl <dennis.kobert@student.kit.edu>2019-06-11 23:05:52 +0200
committeruzvkl <dennis.kobert@student.kit.edu>2019-06-11 23:05:52 +0200
commite6181c24124d97f2fbc932b8a68311e625463156 (patch)
treec1f097c344ca266b7941c9668590b0fd35c7870a /DiscoBot/Commands/FileHandler.cs
parent2490ad5d31fe2ac778ff9303776f0e91f47a2862 (diff)
Move dsa related stuff to subfolder
Diffstat (limited to 'DiscoBot/Commands/FileHandler.cs')
-rw-r--r--DiscoBot/Commands/FileHandler.cs25
1 files changed, 0 insertions, 25 deletions
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