mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +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
|