hh-bot/hh_bot/__main__.py

15 lines
244 B
Python
Raw Normal View History

2025-06-27 09:57:34 +02:00
"""
🚀 HH.ru Автоматизация - Entry point для python -m hh_bot
"""
from .cli import CLIInterface
def main():
"""Главная функция"""
CLIInterface.run_application()
if __name__ == "__main__":
main()