Begining of implementing the entity framework

This commit is contained in:
Runebaas 2018-05-09 01:21:39 +02:00
parent 83f3c61661
commit 510b030fec
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
7 changed files with 108 additions and 43 deletions

View file

@ -11,6 +11,7 @@
// Dependent Services
RedisConnectionFailed = 301,
DatabaseConnectionFailed = 302,
// Discord Related
CouldNotLogin = 401

View file

@ -22,5 +22,8 @@ namespace Geekbot.net.Lib
[Option("token", Default = null, HelpText = "Set a new bot token")]
public string Token { get; set; }
[Option("in-memory", Default = false, HelpText = "Disables the web api")]
public bool InMemory { get; set; }
}
}