mirror of
https://github.com/halo-dev/plugin-s3.git
synced 2025-10-16 23:39:51 +00:00
12 lines
259 B
Java
12 lines
259 B
Java
package run.halo.s3os;
|
|
|
|
import lombok.experimental.UtilityClass;
|
|
|
|
@UtilityClass
|
|
public class FilePathUtils {
|
|
|
|
public static String getFilePathByPlaceholder(String filePath) {
|
|
return PlaceholderReplacer.replacePlaceholders(filePath, null);
|
|
}
|
|
}
|