forked from Drop-OSS/archived-drop-app
* feat: small refactor * fix: appimage build script * fix: add NO_STRIP to AppImage build * fix: build and dev mode from refactor * fix: submodule step 1 * fix: submodules step 2
6 lines
147 B
TypeScript
6 lines
147 B
TypeScript
import { convertFileSrc } from "@tauri-apps/api/core";
|
|
|
|
export const useObject = async (id: string) => {
|
|
return convertFileSrc(id, "object");
|
|
};
|