mirror of
https://github.com/lordmathis/lemma.git
synced 2025-11-05 15:44:21 +00:00
10 lines
187 B
Go
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)
|
|
}
|