mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
|
|
|
import { getAllBookings } from './db/index'
|
|
|
|
export default async (req, res) => {
|
|
const bookings = await getAllBookings()
|
|
|
|
console.log(bookings)
|
|
|
|
res.statusCode = 200
|
|
res.json(['2020-07-23', '2020-07-24', '2020-07-25', '2020-08-01'])
|
|
}
|