Sign up/in/out and authentication.
[recipes.git] / backend / src / user.rs
diff --git a/backend/src/user.rs b/backend/src/user.rs
new file mode 100644 (file)
index 0000000..f6b308f
--- /dev/null
@@ -0,0 +1,11 @@
+use chrono::prelude::*;
+
+pub struct User {
+
+}
+
+pub struct UserLoginInfo {
+    pub last_login_datetime: DateTime<Utc>,
+    pub ip: String,
+    pub user_agent: String,
+}
\ No newline at end of file