mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 04:15:54 +02:00
7 lines
81 B
Go
7 lines
81 B
Go
package apiserver
|
|
|
|
import "os"
|
|
|
|
func cleanFile(path string) {
|
|
os.Remove(path)
|
|
}
|