server: add account creation and login

GitLab: #10
Change-Id: Iddd7ecee7210bc7b839cb2cec5d4291ac725d104
diff --git a/server/src/app.ts b/server/src/app.ts
index f126ed4..04cf04b 100644
--- a/server/src/app.ts
+++ b/server/src/app.ts
@@ -23,7 +23,7 @@
 import { AuthRouter } from './routers/auth-router.js';
 
 @Service()
-class App {
+export class App {
   constructor(private authRouter: AuthRouter) {}
 
   async build() {
@@ -47,5 +47,3 @@
     return app;
   }
 }
-
-export { App };