mirror of
https://github.com/logos-blockchain/logos-blockchain-block-explorer-template.git
synced 2026-01-03 21:53:07 +00:00
13 lines
289 B
Python
13 lines
289 B
Python
|
|
from typing import Optional
|
||
|
|
|
||
|
|
from sqlmodel import Field, SQLModel
|
||
|
|
|
||
|
|
|
||
|
|
class NbeModel(SQLModel):
|
||
|
|
def model_dump_ndjson(self) -> bytes:
|
||
|
|
return f"{self.model_dump_json()}\n".encode("utf-8")
|
||
|
|
|
||
|
|
|
||
|
|
class IdNbeModel(NbeModel):
|
||
|
|
id: Optional[int] = Field(default=None, primary_key=True)
|