mirror of
https://github.com/CorentinTh/it-tools.git
synced 2026-02-27 05:00:28 +00: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,
|
|
});
|