mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-07-26 03:24:02 +00:00
9 lines
138 B
Python
9 lines
138 B
Python
import peewee
|
|
|
|
database_proxy = peewee.DatabaseProxy()
|
|
|
|
|
|
class BaseModel(peewee.Model):
|
|
class Meta:
|
|
database = database_proxy
|