mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-15 03:55:41 +00:00
Ryan Freeman
5e8da79a82
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m45s
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import {getAllArticles} from '@/lib/getAllArticles'
|
|
|
|
export async function GET(request: Request) {
|
|
const articles = await getAllArticles(false)
|
|
|
|
return new Response(JSON.stringify(articles), {status: 200})
|
|
}
|