mirror of
https://github.com/tmdinosaurcenter/gas-form.git
synced 2025-04-04 03:11:22 -06:00
28 lines
577 B
TypeScript
28 lines
577 B
TypeScript
"use server"
|
|
|
|
import { fetchVehicles, submitFillup } from "@/utils/api"
|
|
|
|
export async function getVehicles() {
|
|
try {
|
|
return await fetchVehicles()
|
|
} catch (error) {
|
|
console.error("Error fetching vehicles:", error)
|
|
throw new Error("Failed to fetch vehicles")
|
|
}
|
|
}
|
|
|
|
export async function submitGasFillup(data: {
|
|
name: string
|
|
vehicleId: string
|
|
mileage: number
|
|
gallons: number
|
|
}) {
|
|
try {
|
|
return await submitFillup(data)
|
|
} catch (error) {
|
|
console.error("Error submitting fillup:", error)
|
|
throw new Error("Failed to submit gas fillup")
|
|
}
|
|
}
|
|
|