index — Deutsche-Haus-Bot @ bf2c3f9e75b6733449b26987a754d19c9cb05c43

Discord bot to dynamically create voice chats for clubs that boosters can create

test.py (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
import db as database
import asyncio

async def error_test(hi="", hey=""):
    print(hi, hey)
    


async def db_reset():
    db = database.Database("1170646611236487208.db")
    await db.create_tables()
    await db.create_id_rows()


async def main():
    await error_test("hallo", "was geht")
    

asyncio.run(main())