mirror of
https://github.com/civsocit/olgram.git
synced 2023-07-22 01:29:12 +03:00
10 lines
204 B
Python
10 lines
204 B
Python
import asyncio
|
|
import logging
|
|
from olgram.migrations.custom import migrate
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
asyncio.get_event_loop().run_until_complete(migrate())
|