aboutsummaryrefslogtreecommitdiff
path: root/src/core/user.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-01-15 19:12:12 +0800
committerMistivia <i@mistivia.com>2025-01-15 19:12:46 +0800
commit4da382953c830a61ae24ccbe95c4241db8788269 (patch)
tree31f6d184273274e2660516d1ac1146b5661f20b6 /src/core/user.h
restore
Diffstat (limited to 'src/core/user.h')
-rw-r--r--src/core/user.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/user.h b/src/core/user.h
new file mode 100644
index 0000000..1feaf2f
--- /dev/null
+++ b/src/core/user.h
@@ -0,0 +1,10 @@
+#ifndef HIVE_MIND_CORE_USER_H_
+#define HIVE_MIND_CORE_USER_H_
+
+
+struct User {
+ std::string user_id;
+ std::string nick;
+};
+
+#endif