This commit is contained in:
2024-01-04 09:02:44 +01:00
parent ed19c7c6cb
commit 689c71deb1
48 changed files with 1464 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import reflex as rx
from .base import *
from typing import Optional, List
from sqlmodel import Field, Session, SQLModel, create_engine, select, Relationship
class Scan(BaseModel, table=True):
id: Optional[int] = Field(default=None, primary_key=True)
uuid: str = Field(index=True)
timestamp: int = Field(index=True)