From 02284958a1189ffcb10b34a4c3a02417f8136a4d Mon Sep 17 00:00:00 2001 From: Anson Bridges Date: Mon, 11 Aug 2025 22:24:05 -0700 Subject: Initialize git repo from local project files --- datatypes.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 datatypes.py (limited to 'datatypes.py') 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 -- cgit v1.2.3