Basic database structure

- Change license
This commit is contained in:
2020-12-24 13:48:08 +01:00
parent 1492a15178
commit 0ffbe170dd
11 changed files with 2051 additions and 23 deletions

8
src/routes/user.ts Normal file
View File

@@ -0,0 +1,8 @@
import { Router } from "express";
const invoiceRouter = Router()
invoiceRouter.get('/:id');
invoiceRouter.post('/');
export { invoiceRouter };