Skip to content

UniNotify/zest-backend

Repository files navigation

To install dependencies:

bun install

To run:

bun run dev

open http://localhost:3000

// Add Validation
route.post("/", zValidator("json", userSchema, handleApiError), createUser);

// File upload route
route.post("/upload", async (c) => {
  const body = await c.req.parseBody();
  console.log(body.file); // File | string body['file']
});

About

No description, website, or topics provided.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published