aboutsummaryrefslogtreecommitdiff
path: root/src/app.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.ts')
-rw-r--r--src/app.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/app.ts b/src/app.ts
new file mode 100644
index 0000000..a8dd9f9
--- /dev/null
+++ b/src/app.ts
@@ -0,0 +1,12 @@
+//
+// ~~~ main app
+//
+
+// imports
+import express from "express"
+
+// setup app
+const app = express()
+
+// export app
+export default app