mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
import { bookmarksResponse } from "utils/config/api-response";
|
|
|
|
export default async function handler(req, res) {
|
|
res.send(await bookmarksResponse());
|
|
}
|