Jesse Johnson
New commit for backend deployment: 2025-09-25_13-24-03
c59d808
raw
history blame contribute delete
380 Bytes
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<ChatMessageResponse> => {
const response = await api.get<ChatMessageResponse>(CHAT.ROOT);
return response;
},
};