mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-11 12:48:28 +03:00
17 lines
328 B
Python
17 lines
328 B
Python
|
|
from __future__ import annotations
|
|
from ast import List
|
|
from typing import Any, Union, Dict
|
|
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
import json
|
|
|
|
|
|
@dataclass
|
|
class Media:
|
|
filename: str
|
|
key: str = None
|
|
cdn_url: str = None
|
|
# id: str = None
|
|
# hash: str = None # TODO: added by enrichers
|