mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-08-05 06:46:09 +00: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}`
|
|
});
|