11 lines
178 B
Python
11 lines
178 B
Python
|
from peewee import *
|
||
|
from playhouse.postgres_ext import *
|
||
|
import os
|
||
|
import datetime
|
||
|
|
||
|
db = SqliteDatabase('bot.db')
|
||
|
|
||
|
class BaseModel(Model):
|
||
|
class Meta:
|
||
|
database = db
|