mirror of
https://github.com/WorldObservationLog/AppleMusicDecrypt.git
synced 2026-01-15 14:22:54 -03:00
13 lines
237 B
Python
13 lines
237 B
Python
from dataclasses import dataclass
|
|
|
|
from creart import it
|
|
|
|
from src.config import Config
|
|
|
|
|
|
@dataclass
|
|
class Flags:
|
|
force_save: bool = False
|
|
include_participate_in_works: bool = False
|
|
language: str = it(Config).region.language
|