Files
OutFleet/client/src/features/servers/duck/api.ts

6 lines
213 B
TypeScript
Raw Normal View History

2025-10-11 00:20:28 +03:00
import type { AxiosResponse } from 'axios';
import { api } from '../../../api/api';
import type { ServerDTO } from './dto';
export const getServers = () => api.get<never, AxiosResponse<ServerDTO[]>>('/servers');