diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2025-08-11 22:24:05 -0700 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2025-08-11 22:24:05 -0700 |
| commit | 02284958a1189ffcb10b34a4c3a02417f8136a4d (patch) | |
| tree | 837aac77184a3435ee686dd33878b9f2715c94b1 /datatypes.py | |
Diffstat (limited to 'datatypes.py')
| -rw-r--r-- | datatypes.py | 13 |
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 |
