Files
dmenu-plus-front/src/app/service/Service.ts
T
hamid zarghami db15454a83
Build and Deploy Docker Images / build_and_deploy (push) Has been cancelled
all restaurant
2026-07-05 11:20:56 +03:30

8 lines
256 B
TypeScript

import { RestaurantsListResponse } from "@/app/types/Types";
import { api } from "@/config/axios";
export const getAllRestaurants = async (): Promise<RestaurantsListResponse> => {
const { data } = await api.get("/public/restaurants");
return data;
};