This commit is contained in:
ljw
2024-09-13 15:57:29 +08:00
commit c53df223d1
112 changed files with 14353 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package config
type Oss struct {
AccessKeyId string `mapstructure:"access-key-id"`
AccessKeySecret string `mapstructure:"access-key-secret"`
Host string `mapstructure:"host"`
CallbackUrl string `mapstructure:"callback-url"`
ExpireTime int64 `mapstructure:"expire-time"`
MaxByte int64 `mapstructure:"max-byte"`
}