Skip to content

Commit 3aeda7c

Browse files
author
Victor
committed
feat: add model User
1 parent dd12ed6 commit 3aeda7c

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

src/models/User.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import { connection as database } from '../config/database';
2+
3+
class User {
4+
async find() {
5+
6+
}
7+
8+
async create() {
9+
10+
}
11+
12+
async update() {
13+
14+
}
15+
16+
async delete() {
17+
18+
}
19+
}
20+
21+
export default new User();

0 commit comments

Comments
 (0)