mirror of
https://github.com/logos-storage/bittorrent-benchmarks.git
synced 2026-01-02 13:03:13 +00:00
17 lines
237 B
Python
17 lines
237 B
Python
from pydantic import BaseModel
|
|
|
|
API_VERSION = "v1"
|
|
|
|
Cid = str
|
|
|
|
|
|
class Manifest(BaseModel):
|
|
cid: Cid
|
|
treeCid: Cid
|
|
datasetSize: int
|
|
blockSize: int
|
|
filename: str
|
|
mimetype: str
|
|
uploadedAt: int
|
|
protected: bool
|