去除缓存

This commit is contained in:
微凉
2021-03-07 21:02:56 +08:00
parent 443067b80f
commit b677d6ad21
19 changed files with 162 additions and 351 deletions

View File

@ -2,6 +2,7 @@ package test
import (
"fmt"
"path/filepath"
"strings"
"testing"
)
@ -18,4 +19,9 @@ func TestPassword(t *testing.T) {
name:=fullName[:index]
password:=fullName[index+10:]
fmt.Printf("name:%s, password:%s\n",name,password)
}
func TestDir(t *testing.T) {
dir,file:=filepath.Split("/root/")
fmt.Printf("dir:%s\nfile:%s\n",dir,file)
}