ActivityWatch/aw-core

View on GitHub
aw_datastore/storages/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
import logging as _logging

logger: _logging.Logger = _logging.getLogger(__name__)

from .abstract import AbstractStorage
from .memory import MemoryStorage
from .peewee import PeeweeStorage
from .sqlite import SqliteStorage

__all__ = [
    "AbstractStorage",
    "MemoryStorage",
    "PeeweeStorage",
    "SqliteStorage",
]