aboutsummaryrefslogtreecommitdiff
path: root/src/app.ts
blob: a8dd9f9e2d09ebba4caccee58162bcc036d73eb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//
// ~~~ main app
//

// imports
import express from "express"

// setup app
const app = express()

// export app
export default app