9 lines
No EOL
322 B
JavaScript
9 lines
No EOL
322 B
JavaScript
import axios from "axios"
|
|
|
|
const API = axios.create({
|
|
baseURL: "http://localhost:8080/api/",
|
|
});
|
|
|
|
export const GetPosts = async () => await API.get("/post/");
|
|
export const CreatePost = async (data) => await API.post("/post/", data)
|
|
export const GenerateAIImage = async (data) => await API.post("/generateImage/", data) |