mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-10 20:05:55 +02:00
9 lines
138 B
Go
9 lines
138 B
Go
// +build windows
|
|
|
|
package fileacquisition
|
|
|
|
import "strings"
|
|
|
|
func trimLine(text string) string {
|
|
return strings.TrimRight(text, "\r")
|
|
}
|