- Created `qa-test-output-after-fix.txt` and `qa-test-output.txt` to log results of certificate page authentication tests. - Added `build.sh` for deterministic backend builds in CI, utilizing `go list` for efficiency. - Introduced `codeql_scan.sh` for CodeQL database creation and analysis for Go and JavaScript/TypeScript. - Implemented `dockerfile_check.sh` to validate Dockerfiles for base image and package manager mismatches. - Added `sourcery_precommit_wrapper.sh` to facilitate Sourcery CLI usage in pre-commit hooks.
7 lines
395 B
Go
7 lines
395 B
Go
// Package services provides the core application services used across the
|
|
// backend. Services encapsulate business logic and external/system interactions
|
|
// such as notification delivery, backups, mail sending, uptime monitoring,
|
|
// and more. These are instantiated by the application startup code and wired
|
|
// into HTTP handlers to provide functionality to the frontend API.
|
|
package services
|