forked from ProfessionalUwU/stickerpicker
10 lines
189 B
Python
10 lines
189 B
Python
|
from typing import ClassVar, TYPE_CHECKING
|
||
|
|
||
|
from mautrix.util.async_db import Database
|
||
|
|
||
|
fake_db = Database("") if TYPE_CHECKING else None
|
||
|
|
||
|
|
||
|
class Base:
|
||
|
db: ClassVar[Database] = fake_db
|