23 lines
696 B
JavaScript
23 lines
696 B
JavaScript
import { demo } from "./demo/index.js";
|
|
import { router as treatments } from "./treatments.js";
|
|
import { router as bookings } from "./bookings.js";
|
|
import { router as auth } from "./auth.js";
|
|
import { router as recurringAvailability } from "./recurring-availability.js";
|
|
import { router as cancellation } from "./cancellation.js";
|
|
import { router as legal } from "./legal.js";
|
|
import { router as gallery } from "./gallery.js";
|
|
import { router as reviews } from "./reviews.js";
|
|
import { router as social } from "./social.js";
|
|
export const router = {
|
|
demo,
|
|
treatments,
|
|
bookings,
|
|
auth,
|
|
recurringAvailability,
|
|
cancellation,
|
|
legal,
|
|
gallery,
|
|
reviews,
|
|
social,
|
|
};
|