it-tools/src/tools/my-ip/index.ts
2025-02-02 18:34:00 +01:00

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'),
});