it-tools/src/tools/my-ip/index.ts

13 lines
372 B
TypeScript
Raw Normal View History

import { World } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'My IP Address',
path: '/my-ip',
2025-02-02 18:29:36 +01:00
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'),
});