initial commit

This commit is contained in:
Madison Grubb
2026-02-10 23:32:26 -05:00
commit b7046dc0e6
133 changed files with 26080 additions and 0 deletions

7
server/api/pois.get.js Normal file
View File

@@ -0,0 +1,7 @@
import { getDb } from '../utils/db.js'
export default defineEventHandler(async () => {
const { all } = await getDb()
const rows = await all('SELECT id, lat, lng, label, icon_type FROM pois ORDER BY id')
return rows
})