import axios from "axios"; export default async (name: string, sourcePath: string) => { try { const response = await axios.post( "http://localhost:3000/query/module/create", { name, sourcePath, } ); return response; } catch (error) { console.error("Error in creating project or query:", error); } };