Coverage for src/prosemark/app/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-09-24 18:08 +0000

1"""Application layer - Use cases and orchestration logic. 

2 

3This package contains application services that orchestrate domain logic 

4and coordinate between different layers of the hexagonal architecture. 

5Use cases and application workflows are implemented here. 

6""" 

7 

8from prosemark.app.use_cases import InitProject 

9 

10__all__ = [ 

11 'InitProject', 

12]