package auth import ( "os" "testing" "atcr.io/internal/testlog" ) // TestMain silences slog for the package (see internal/testlog); run with -v // or ATCR_TEST_LOGS=1 to see the logs again. func TestMain(m *testing.M) { testlog.Quiet() os.Exit(m.Run()) }