= Configs updating

This commit is contained in:
Matthew Cech
2019-11-02 19:13:26 -08:00
parent ee60721897
commit 7f2251732e
5 changed files with 92 additions and 5 deletions
+18
View File
@@ -0,0 +1,18 @@
package dataStructures;
public enum KittyStartupMode
{
Development("dev"), Release("release");
private final String value;
private KittyStartupMode(String value)
{
this.value = value;
}
public String getValue()
{
return value;
}
}