Add in some ui work for listing available characters.

This commit is contained in:
iamBadgers
2025-07-05 00:10:59 -07:00
parent 0707250864
commit 8745fc3c7e
11 changed files with 1745 additions and 40 deletions

View File

@@ -75,14 +75,13 @@ export class CharacterService {
call: ServerUnaryCall<ListCharacterRequest, ListCharacterResponse>,
callback: sendUnaryData<ListCharacterResponse>,
) {
// let characters = await this.databaseService.listCharacters(
// call.request.playerName,
// call.request.characterName,
// )
console.log("potato")
let characters = await this.databaseService.listCharacters(
call.request.playerName,
call.request.characterName,
)
callback(null, {
characters: [],
characters,
})
}
}