mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 12:14:33 +01:00
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
export default defineEventHandler(async () => {
|
|
return useDrizzle()
|
|
.select()
|
|
.from(tables.tabs)
|
|
.orderBy(tables.tabs.id, 'desc')
|
|
})
|