import { ChatMessageResponse } from "@/types/chat"; import { api } from "./api-client"; import { CHAT } from "./endpoints"; export const chatService = { // TODO: Implement chat service methods, and delete this placeholder getMessage: async (): Promise => { const response = await api.get(CHAT.ROOT); return response; }, };