aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/plugins/draftbottles/database.py
blob: dededacac2053e3cbc05df1b83f50c6e34d81f87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class Database:
    admin_list: list = [2753364619]

    def __init__(self) -> None:
        ...

    def connect(self):
        ...

    def close(self):
        ...