You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tui-rsync/tui_rsync/infrastructure/orm/sqlite_database_manager.py

8 lines
223 B

from peewee import SqliteDatabase
from .database_manager import DatabaseManager
class SqliteDatabaseManager(DatabaseManager):
def __init__(self, filepath='sync.db'):
super().__init__(SqliteDatabase(filepath))