mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2026-08-19 20:23:07 -04:00
8 lines
138 B
Python
8 lines
138 B
Python
import peewee
|
|
|
|
database_proxy = peewee.DatabaseProxy()
|
|
|
|
|
|
class BaseModel(peewee.Model):
|
|
class Meta:
|
|
database = database_proxy
|