summary refs log tree commit diff stats
path: root/account/user.go
diff options
context:
space:
mode:
Diffstat (limited to 'account/user.go')
-rw-r--r--account/user.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/account/user.go b/account/user.go
new file mode 100644
index 0000000..769e8fc
--- /dev/null
+++ b/account/user.go
@@ -0,0 +1,10 @@
+package account
+
+// User holds information about the user.
+type User struct {
+	ID       string
+	Username string
+	Password string
+	Hash     string
+	Token    string
+}