backend.components

Components

The components folder contains modularized backend logic for the application. Each subfolder represents a distinct feature or service.

Directory Structure

camera_verification

Handles the verification of workers using QR codes and face recognition.

reports

Manages logging of worker entries, including storing event details such as verification results and images.

workers

Handles worker-related operations, including CRUD operations, entry pass generation, worker onboarding.

utils

Provides various utility functions used across the application, such as image parsing and encoding.

 1"""
 2# Components
 3
 4The `components` folder contains modularized backend logic for the application. Each subfolder represents a distinct feature or service.
 5
 6## Directory Structure
 7
 8#### `camera_verification`
 9Handles the verification of workers using QR codes and face recognition. 
10
11#### `reports`
12Manages logging of worker entries, including storing event details such as verification results and images.
13
14#### `workers`
15Handles worker-related operations, including CRUD operations, entry pass generation, worker onboarding. 
16
17#### `utils`
18Provides various utility functions used across the application, such as image parsing and encoding.
19"""