mirror of
https://github.com/AlistGo/alist.git
synced 2025-11-25 19:37:41 +08:00
11 lines
191 B
Go
11 lines
191 B
Go
package s3
|
|
|
|
var defaultPlaceholderName = ".placeholder"
|
|
|
|
func getPlaceholderName(placeholder string) string {
|
|
if placeholder == "" {
|
|
return defaultPlaceholderName
|
|
}
|
|
return placeholder
|
|
}
|