You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
361 B
14 lines
361 B
8 months ago
|
package config
|
||
|
|
||
|
type Upload struct {
|
||
|
Root string `ini:"root"`
|
||
|
Thumb string `ini:"thumb"`
|
||
|
Cdn string `ini:"cdn"`
|
||
|
ImageExts []string `ini:"imageExts"`
|
||
|
MaxImage int64 `ini:"maxImage"`
|
||
|
ImagePath string `ini:"imagePath"`
|
||
|
FileExts []string `ini:"fileExts"`
|
||
|
MaxFile int64 `ini:"maxFile"`
|
||
|
FilePath string `ini:"filePath"`
|
||
|
}
|