20 lines
No EOL
432 B
C#
20 lines
No EOL
432 B
C#
namespace Geekbot.net.Lib
|
|
{
|
|
public enum GeekbotExitCode
|
|
{
|
|
// General
|
|
Clean = 0,
|
|
InvalidArguments = 1,
|
|
|
|
// Geekbot Internals
|
|
TranslationsFailed = 201,
|
|
|
|
// Dependent Services
|
|
/* 301 not in use anymore (redis) */
|
|
DatabaseConnectionFailed = 302,
|
|
|
|
// Discord Related
|
|
CouldNotLogin = 401
|
|
|
|
}
|
|
} |