9 lines
142 B
Python
9 lines
142 B
Python
from peewee import Model, MySQLDatabase
|
|
|
|
database = MySQLDatabase(None)
|
|
|
|
|
|
class BaseModel(Model):
|
|
class Meta:
|
|
database = database
|