mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
12 lines
372 B
TypeScript
12 lines
372 B
TypeScript
import { World } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
|
|
export const tool = defineTool({
|
|
name: 'My IP Address',
|
|
path: '/my-ip',
|
|
description: 'Get your client IP Address (IPv4/6) using https://www.ipify.org/',
|
|
keywords: ['my', 'client', 'ip'],
|
|
component: () => import('./my-ip.vue'),
|
|
icon: World,
|
|
createdAt: new Date('2025-01-01'),
|
|
});
|