UNPKG
wealthor
Version:
latest (0.1.0)
0.1.0
Personal finance app
github.com/jozsi/wealthor
jozsi/wealthor
wealthor
/
app.js
9 lines
(5 loc)
•
145 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
Koa
=
require
(
'koa'
);
const
bodyParser =
require
(
'koa-bodyparser'
);
const
app =
new
Koa
(); app.
use
(
bodyParser
());
module
.
exports
= app;