mirror of
https://github.com/Findus23/RadioStats.git
synced 2024-09-09 04:23:47 +02:00
8 lines
109 B
Python
8 lines
109 B
Python
from peewee import Model
|
|
|
|
from app import db
|
|
|
|
|
|
class BaseModel(Model):
|
|
class Meta:
|
|
database = db
|