Nesting routes
Routes can be nested as much as you want.
server.tsexport const router = {
user: {
get: ...,
delte: ...,
update: ...,
}
}
clientawait api.user.get().ok()
Routes can be nested as much as you want.
server.tsexport const router = {
user: {
get: ...,
delte: ...,
update: ...,
}
}
clientawait api.user.get().ok()