Commit 43c065ab authored by Paul Asmuth's avatar Paul Asmuth
Browse files

add Status enum

parent 0f4c8b2b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -18,6 +18,10 @@ struct Context {

};

enum Status : int {
  OK, ERROR
};

struct Command {
  std::vector<std::string> name;
  int (*fn)(Context*, const char**, int);