aboutsummaryrefslogtreecommitdiff
path: root/internal/player/account.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-09 05:59:20 -0400
committerhistoria <[not public]>2026-06-09 05:59:20 -0400
commit9eb5ab1818b6b19501fd7209db1987c9e06cc919 (patch)
tree76e046b0bf611dfe939a8c8f6507467de2e9e20f /internal/player/account.go
downloadthehouseoficarus-9eb5ab1818b6b19501fd7209db1987c9e06cc919.tar.gz
first commit
Diffstat (limited to 'internal/player/account.go')
-rw-r--r--internal/player/account.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/player/account.go b/internal/player/account.go
new file mode 100644
index 0000000..5072009
--- /dev/null
+++ b/internal/player/account.go
@@ -0,0 +1,7 @@
+package player
+
+type Account struct {
+ Name string `yaml:"name"`
+ PasswordHash string `yaml:"password_hash"`
+ Characters []string `yaml:"characters"`
+}