【调整】暗色主题样式

This commit is contained in:
cai
2025-12-12 17:39:52 +08:00
parent 13669666e4
commit d01b42139c
1199 changed files with 203816 additions and 4592 deletions

View File

@@ -0,0 +1,27 @@
package doge
import (
"fmt"
"os"
"testing"
)
func TestPlugin(t *testing.T) {
err := os.Chdir("D:/code/ALLinSSL")
if err != nil {
fmt.Fprintf(os.Stderr, "切换目录失败: %v\n", err)
os.Exit(1)
}
err = DeployCdn(map[string]interface{}{
"provider_id": "xx",
"certificate": map[string]any{
"key": "xx",
"cert": "xx",
},
"domain": "xx",
})
if err != nil {
fmt.Fprintf(os.Stderr, "调用插件失败: %v\n", err)
os.Exit(1)
}
}