mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-08 03:18:28 +03:00
12 lines
186 B
Python
12 lines
186 B
Python
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class TwitterApiConfig:
|
|
bearer_token: str
|
|
consumer_key: str
|
|
consumer_secret: str
|
|
access_token: str
|
|
access_secret: str
|