mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-07-12 07:30:20 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m44s
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import {getAllArticles} from '@/lib/getAllArticles'
|
|
|
|
export async function GET(request: Request) {
|
|
const articles = await getAllArticles()
|
|
|
|
return new Response(JSON.stringify(articles), {status: 200})
|
|
}
|