7 lines
192 B
Python
7 lines
192 B
Python
|
#!/usr/bin/env python3
|
||
|
from .database import db
|
||
|
import os
|
||
|
|
||
|
async def startup():
|
||
|
await db.signin({"user": os.getenv('DB_USER'), "pass": os.getenv('DB_PW')})
|
||
|
await db.use("test", "test")
|