chore(base): resolved merge-conflict

#5 [Story] Create User Sessions
This commit is contained in:
2025-10-26 11:24:05 +01:00
parent bef96ba7e3
commit d87348f13f
13 changed files with 114 additions and 44 deletions

View File

@@ -0,0 +1,10 @@
package logic.user
trait UserManager {
def addUser(name: String, password: String): Boolean
def authenticate(name: String, password: String): Boolean
def userExists(name: String): Boolean
def removeUser(name: String): Boolean
}