mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-10 20:05:55 +02:00
9 lines
102 B
Go
9 lines
102 B
Go
//go:build !windows
|
|
|
|
package apiserver
|
|
|
|
import "os"
|
|
|
|
func cleanFile(path string) {
|
|
os.Remove(path)
|
|
}
|