6 lines
93 B
Python
6 lines
93 B
Python
import asyncio
|
|
from db import init_db
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(init_db())
|