Coverage for postrfp/ref/__init__.py: 100%
0 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-22 21:34 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-22 21:34 +0000
1"""
2ref package description
5This package provides a Conent Management System
7sub-packages and modules
9- db (database models and service functions)
10-- models.py - sqlalchemy model & table definitons
11-- auth_service.py - functions providing an abstraction on top of the permissions related models
12-- content_service.py - functions abstracting Content and Subject models
13-- helpers.py - general sqlalchemy querying functions to de-clutter the http handlers
14- web (http handlers)
15-- refapp.py wsgi App
16--serial.py - pydantic models
17-- handlers - sub-package housing http handler modules
18--- administration.py - permission related endpoints
19--- editors.py - endpoints for content authors
20--- readers.py - endpoints for content consumers
21--- designers.py - endpoints for users who are created the schemas which dictate the structur of the Content models
23"""