dev / app /routes /api.models.ts
Charan5775's picture
Add application file
8f7821c
raw
history blame contribute delete
157 Bytes
import { json } from '@remix-run/cloudflare';
import { MODEL_LIST } from '~/utils/constants';
export async function loader() {
return json(MODEL_LIST);
}