telegram-use-proper-grammar.../propergrammar/__init__.py
2020-02-15 22:48:06 -03:00

10 lines
179 B
Python

#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
from pathlib import Path
from .telebot import start_bot
def main():
start_bot(Path('telegrambot.txt').read_text().strip())