feat: create model

This commit is contained in:
Timothy J. Baek
2024-05-24 22:21:57 -07:00
parent ca3108a54d
commit dac9634242
13 changed files with 286 additions and 951 deletions

View File

@@ -166,7 +166,9 @@ class ModelsTable:
model = Model.get(Model.id == id)
return ModelModel(**model_to_dict(model))
except:
except Exception as e:
print(e)
return None
def delete_model_by_id(self, id: str) -> bool: