Files
SneakyScan/app/web/services/__init__.py

11 lines
262 B
Python

"""
Services package for SneakyScanner web application.
This package contains business logic layer services that orchestrate
operations between API endpoints and database models.
"""
from web.services.scan_service import ScanService
__all__ = ['ScanService']