9 lines
152 B
Go
9 lines
152 B
Go
|
|
package eliminate
|
||
|
|
|
||
|
|
import "os"
|
||
|
|
|
||
|
|
// EliminateBinary removes a binary from the system
|
||
|
|
func EliminateBinary(path string) error {
|
||
|
|
return os.Remove(path)
|
||
|
|
}
|