1//go:build !go1.21
2
3// For go1.20 and earlier.
4
5package tlsrpt
6
7import (
8 "fmt"
9)
10
11func formatAlert(alert uint8) string {
12 return fmt.Sprintf("alert-%d", alert)
13}
14