diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-15 23:17:09 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-15 23:17:09 +0200 |
commit | 3d507d36ea2c7955d98a16b85cb7bc02c8923caa (patch) | |
tree | 82a26595e2c3fc37de7c7b84aecdcb38635ebfeb /model | |
parent | 6ceda23af460ddd4f79b476248a4244e60932926 (diff) |
User login & logout
Diffstat (limited to 'model')
-rw-r--r-- | model/user.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/model/user.go b/model/user.go new file mode 100644 index 0000000..4959371 --- /dev/null +++ b/model/user.go @@ -0,0 +1,8 @@ +package model + +type User struct { + Id UUID + Name string + Salt string + Password []byte +} |