- package test
- import (
- "testing"
- "xg_dba/internal/middleware"
- )
- func TestCache(t *testing.T) {
- // 指定需要查找的根文件夹路径
- folderPath := "C:\\Program_GT\\Code\\Go\\Work\\xugu\\xg_dba\\config"
- cache, _ := middleware.InitCache(folderPath)
- cache.GetConnectCache()
- //fmt.Println(cache)
- }
|