Files
lemma/server/internal/testenv/testenv.go
2024-12-19 23:42:19 +01:00

10 lines
188 B
Go

// Package testenv provides a setup for testing the application.
package testenv
import "novamd/internal/logging"
func init() {
// Initialize the logger
logging.Setup(logging.ERROR)
}