mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-28 02:26:15 -04:00
12 lines
446 B
TypeScript
12 lines
446 B
TypeScript
![]() |
import { SpeedFilled } from '@vicons/material';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Benchmark builder',
|
||
|
path: '/benchmark-builder',
|
||
|
description: 'Easily compare execution time of tasks with this very simple online benchmark builder.',
|
||
|
keywords: ['benchmark', 'builder', 'execution', 'duration', 'mean', 'variance'],
|
||
|
component: () => import('./benchmark-builder.vue'),
|
||
|
icon: SpeedFilled,
|
||
|
});
|