summaryrefslogtreecommitdiff
path: root/DiscoBot/DSA_Game/Save/SaveCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/DSA_Game/Save/SaveCommand.cs')
-rw-r--r--DiscoBot/DSA_Game/Save/SaveCommand.cs43
1 files changed, 43 insertions, 0 deletions
diff --git a/DiscoBot/DSA_Game/Save/SaveCommand.cs b/DiscoBot/DSA_Game/Save/SaveCommand.cs
new file mode 100644
index 0000000..310d38a
--- /dev/null
+++ b/DiscoBot/DSA_Game/Save/SaveCommand.cs
@@ -0,0 +1,43 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DiscoBot.DSA_Game.Save
+{
+ using System.IO;
+ using System.Net.Http;
+
+ using DiscoBot.Auxiliary;
+
+ using Discord.Commands;
+
+ public class SaveCommand : ModuleBase
+ {
+ [Command("save"), Summary("Save Session")]
+ public async Task ReportAsync()
+ {
+
+
+ await this.ReplyAsync($"Dein report wurde hinzugefügt");
+ }
+
+ [Command("save"), Summary("Save Session")]
+ public async Task ReportAsync([Remainder, Summary("Session Name")] string name)
+ {
+ if (name.Equals("?"))
+ {
+ await this.ReplyAsync($"Gespeicherte Sessions:");
+ await this.ReplyAsync(this.ListSessions());
+ }
+ }
+
+ private string[] ListSessions()
+ {
+ return Directory.GetDirectories(@"..\..\sessions");
+ }
+
+
+ }
+}