import axiosInstance from "./config"; import type { Plant } from "@/types"; export interface PlantResponse { plants: Plant[]; } export function getPlants(): Promise { return axiosInstance.get("/plant").then((res) => res.data); }