5 lines
111 B
JavaScript
5 lines
111 B
JavaScript
import { filePath } from "../consts.mjs";
|
|
|
|
export function imagePath(image) {
|
|
return filePath(image.path);
|
|
};
|