telegram-use-proper-grammar.../propergrammar/__init__.py

10 lines
179 B
Python
Raw Normal View History

2020-02-16 01:48:06 +00:00
#!/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())