fixing merge conflits

This commit is contained in:
Chris Troutner
2026-02-02 18:39:57 -07:00
34 changed files with 824 additions and 917 deletions
+33
View File
@@ -70,6 +70,39 @@ const localdb = {
}
},
Usage: class Usage {
static findById () {}
static find () {}
static findOne () {
return {
validatePassword: localdb.validatePassword
}
}
async save () {
return {}
}
generateToken () {
return '123'
}
toJSON () {
return {}
}
async remove () {
return true
}
async validatePassword () {
return true
}
static async deleteMany(){
return true
}
},
validatePassword: () => {
return true
}