5 lines
206 B
TypeScript
5 lines
206 B
TypeScript
import { getWalletsByLedgerId } from "../../../repositories/wallet.ts";
|
|
import route from "./spec.ts";
|
|
|
|
export default route.access("public").handle(async ({ params: { id } }) => getWalletsByLedgerId(id));
|