feat: new deployment provider: ctcccloud cdn

This commit is contained in:
Fu Diwei
2025-06-13 12:01:30 +08:00
parent 9c8ab98efb
commit 0d44373de6
31 changed files with 925 additions and 57 deletions

View File

@@ -1,6 +1,8 @@
package typeutil
import "reflect"
import (
"reflect"
)
// 判断对象是否为 nil。
// 与直接使用 `obj == nil` 不同,该函数会正确判断接口类型对象的真实值是否为空。

View File

@@ -1,6 +1,8 @@
package typeutil
import "reflect"
import (
"reflect"
)
// 将对象转换为指针。
//