mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-23 19:18:14 +09:00
7 lines
125 B
TypeScript
7 lines
125 B
TypeScript
import config from '../../../config';
|
|
|
|
export default ({ _id }) => ({
|
|
type: 'Image',
|
|
url: `${config.drive_url}/${_id}`
|
|
});
|