Files
lbc-finder/main.py
2025-08-21 23:50:34 +02:00

9 lines
177 B
Python

from searcher import Searcher
from config import CONFIG
def main() -> None:
searcher = Searcher(searches=CONFIG)
searcher.start()
if __name__ == "__main__":
main()