simple website

This commit is contained in:
Jeffrey Morgan
2023-07-02 19:52:40 -04:00
parent 8685a5ad18
commit d972647e7c
16 changed files with 4290 additions and 0 deletions

5
web/pages/api/models.js Normal file
View File

@@ -0,0 +1,5 @@
import models from '../../../models.json'
export default async function handler(req, res) {
return res.status(200).json(models)
}