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