server: add account creation and login

GitLab: #10
Change-Id: Iddd7ecee7210bc7b839cb2cec5d4291ac725d104
diff --git a/server/src/constants.ts b/server/src/constants.ts
index 5a1666b..1e50c68 100644
--- a/server/src/constants.ts
+++ b/server/src/constants.ts
@@ -16,7 +16,7 @@
  * <https://www.gnu.org/licenses/>.
  */
 
-enum StatusCode {
+export enum StatusCode {
   OK = 200,
   CREATED = 201,
   ACCEPTED = 202,
@@ -33,5 +33,3 @@
   INTERNAL_SERVER_ERROR = 500,
   NOT_IMPLEMENTED = 501,
 }
-
-export { StatusCode };