7 lines
194 B
JavaScript
7 lines
194 B
JavaScript
import handleMeetingCreation from './meetingCreation';
|
|
|
|
export default async function handleGetAllMeetings({ body }) {
|
|
const result = await handleMeetingCreation({ body });
|
|
return result;
|
|
}
|