mirror of
https://github.com/etienne-hd/lbc-finder.git
synced 2026-04-15 05:55:36 +02:00
9 lines
177 B
Python
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() |