mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-14 01:41:23 -06:00
6 lines
223 B
Python
6 lines
223 B
Python
from .distribution import Distribution as Distribution
|
|
|
|
class Index(dict[str, Distribution]):
|
|
def __setitem__(self, key: str, value: Distribution) -> None: ...
|
|
def add(self, distribution: Distribution) -> None: ...
|