6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
import handleMeetingCreation from './meetingCreation';
|
|
|
|
export default function handleGetAllMeetings({ body }) {
|
|
return handleMeetingCreation({ body });
|
|
}
|