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

10 lines
187 B
Go

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