mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-18 19:56:57 +00:00
7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
import config from '../../../conf';
|
|
|
|
export default ({ _id, contentType }) => ({
|
|
type: 'Document',
|
|
mediaType: contentType,
|
|
url: `${config.drive_url}/${_id}`
|
|
});
|