1
0
mirror of https://github.com/IceWhaleTech/CasaOS.git synced 2025-07-15 23:54:17 +02:00

Modify naming rules

This commit is contained in:
link
2023-02-07 10:32:12 +00:00
parent b7634402bd
commit 7dedbafc8a
6 changed files with 38 additions and 6 deletions

View File

@ -0,0 +1,12 @@
package file
import (
"fmt"
"testing"
)
func TestNameAccumulation(t *testing.T) {
fmt.Println("aaa")
a := NameAccumulation("/mnt/test_1_1", "/")
fmt.Println(a)
}