uniugm/admin/lib/dfs/dfs_test.go

16 lines
244 B
Go
Raw Normal View History

2025-07-07 17:07:58 +08:00
package dfs
import (
"log"
"testing"
)
func TestDfs(t *testing.T) {
c := newCos()
data, err := c.GetObj("Default_Update/AndroidTest/REMAIN-ServerList.bytes")
if err != nil {
panic(err)
}
log.Printf("file content:%v", string(data))
}