mirror of
https://github.com/etienne-hd/lbc-finder.git
synced 2025-12-05 09:08:10 +01: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() |