init commit.
This commit is contained in:
11
util_rm.go
Normal file
11
util_rm.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func Rm(p string) error {
|
||||
fmt.Println("Remove: " + p)
|
||||
return os.Remove(p)
|
||||
}
|
Reference in New Issue
Block a user