blob: 3c5d11bd29282b83e1496095239dec36512f9bdd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Camera } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Camera recorder',
path: '/camera-recorder',
description: 'Take a picture or record a video from your webcam or camera.',
keywords: ['camera', 'recoder'],
component: () => import('./camera-recorder.vue'),
icon: Camera,
createdAt: new Date('2023-05-15'),
});
|