summaryrefslogtreecommitdiff
path: root/datatypes.py
diff options
context:
space:
mode:
authorAnson Bridges <bridges.anson@gmail.com>2025-08-11 22:24:05 -0700
committerAnson Bridges <bridges.anson@gmail.com>2025-08-11 22:24:05 -0700
commit02284958a1189ffcb10b34a4c3a02417f8136a4d (patch)
tree837aac77184a3435ee686dd33878b9f2715c94b1 /datatypes.py
Initialize git repo from local project filesHEADmaster
Diffstat (limited to 'datatypes.py')
-rw-r--r--datatypes.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/datatypes.py b/datatypes.py
new file mode 100644
index 0000000..9eac1e7
--- /dev/null
+++ b/datatypes.py
@@ -0,0 +1,13 @@
+from flask_login import UserMixin
+from . import db
+
+class User(UserMixin):
+ email = ""
+ password = ""
+ name = ""
+ id = ""
+ def __init__(self, email, password, name):
+ self.email = email
+ self.password = password
+ self.name = name
+ self.id = email