summaryrefslogtreecommitdiff
path: root/src/user.rs
diff options
context:
space:
mode:
authorKeuin <[email protected]>2022-03-27 17:40:18 +0800
committerKeuin <[email protected]>2022-03-27 17:40:18 +0800
commitaae1f386456a605c12263e2ba5f09dc36bb180b3 (patch)
treed125ec6c6ecc0e53389713578374b1f510e65416 /src/user.rs
Finally, it works.
Further cleanup work is needed.
Diffstat (limited to 'src/user.rs')
-rw-r--r--src/user.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/user.rs b/src/user.rs
new file mode 100644
index 0000000..aef43fa
--- /dev/null
+++ b/src/user.rs
@@ -0,0 +1,6 @@
+pub struct User {
+ pub id: u64,
+ pub name: String,
+ pub token: String,
+ pub chat_id: u64,
+} \ No newline at end of file