10 lines
276 B
Go
10 lines
276 B
Go
package handlers
|
|
|
|
// ExportedSanitizeTail wraps sanitizeTail for external tests.
|
|
func ExportedSanitizeTail(input string) string {
|
|
return sanitizeTail(input)
|
|
}
|
|
|
|
// ExportedDefaultLogTail exports defaultLogTail for external tests.
|
|
const ExportedDefaultLogTail = defaultLogTail
|