init commit.

This commit is contained in:
2025-03-15 11:19:19 +08:00
commit e2856f1074
8 changed files with 165 additions and 0 deletions

11
util_rm.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
"os"
)
func Rm(p string) error {
fmt.Println("Remove: " + p)
return os.Remove(p)
}