Coverage for seedboxsync/core/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.16.1, created at 2026-09-26 17:14 +0000

1# 

2# Copyright (C) 2015-2026 Guillaume Kulakowski <guillaume@kulakowski.fr> 

3# 

4# For the full copyright and license information, please view the LICENSE 

5# file that was distributed with this source code. 

6# 

7"""SeedboxSync Core package.""" 

8 

9from . import logger 

10from .config import Config 

11from .database.database import Database 

12from .flask import SeedboxSyncFlask as Flask, seedboxsync_current_app as current_app 

13 

14__all__ = ["Config", "Database", "Flask", "current_app", "logger"]