mirror of
https://github.com/etienne-hd/lbc-finder.git
synced 2025-12-05 17:18:18 +01:00
12 lines
269 B
Python
12 lines
269 B
Python
from lbc import Proxy, Ad
|
|
from .parameters import Parameters
|
|
from dataclasses import dataclass
|
|
from typing import Callable
|
|
|
|
@dataclass
|
|
class Search:
|
|
name: str
|
|
parameters: Parameters
|
|
delay: float
|
|
handler: Callable[[Ad, str], None]
|
|
proxy: Proxy = None |