adding cors

This commit is contained in:
Adolfo Reyna
2021-07-20 09:55:19 -07:00
parent cceaa4a64e
commit dcd161aac8
4 changed files with 28 additions and 0 deletions

14
def/user.js Normal file
View File

@@ -0,0 +1,14 @@
class User {
constructor(json){
this.username = 'aeroreyna';
this.following = [];
this.lastUpdate = new Date();ß
this.newsFeedCache = [];
this.isGroup = false;
}
newPost(){}
newComment(){}
newReaction(){}
}