mirror of
https://github.com/AlistGo/alist.git
synced 2026-01-01 12:19:02 +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
|
|
}
|