implement reset nkode

This commit is contained in:
2024-09-27 13:51:45 -05:00
parent 1b133edd78
commit 57b5308ca9
17 changed files with 489 additions and 88 deletions

View File

@@ -66,6 +66,10 @@ func (db *InMemoryDb) WriteNewUser(user User) error {
return nil
}
func (db *InMemoryDb) UpdateUserNKode(user User) error {
return errors.ErrUnsupported
}
func (db *InMemoryDb) UpdateUserInterface(userId UserId, ui UserInterface) error {
user, exists := db.Users[userId]
if !exists {