AIGC-Telegram-Bot / __main__.py
R-Kentaren's picture
Restructured: pipeline in src/core/, full README, removed AIGC-Telegram/
3c96c16 verified
Raw
History Blame Contribute Delete
178 Bytes
#!/usr/bin/env python3
"""
Entry point for running the AIGC Telegram Bot.
Usage: python -m src.bot
"""
import sys
from src.bot import main
if __name__ == "__main__":
main()