- Updated file permissions in certificate_service_test.go and log_service_test.go to use octal notation. - Added a new doc.go file to document the services package. - Enhanced error handling in docker_service.go, log_service.go, notification_service.go, proxyhost_service.go, remoteserver_service.go, update_service.go, and uptime_service.go by logging errors when closing resources. - Improved log_service.go to simplify log file processing and deduplication. - Introduced CRUD tests for notification templates in notification_service_template_test.go. - Removed the obsolete python_compile_check.sh script. - Updated notification_service.go to improve template management functions. - Added tests for uptime service notifications in uptime_service_notification_test.go.
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
|