Skip to content

Commit

Permalink
Run format
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Sep 22, 2023
1 parent 4595f10 commit 312a8b3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions generate-routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,9 @@ const write = async (data: string, ...path: string[]): Promise<void> => {
}

const routeRootPath = resolve('src', 'lib', 'seam', 'connect', 'routes')
const writeRoute = async (route: Route): Promise<void> =>
{ await write(renderRoute(route), routeRootPath, `${route.namespace}.ts`); }
const writeRoute = async (route: Route): Promise<void> => {
await write(renderRoute(route), routeRootPath, `${route.namespace}.ts`)
}

const routes = [exampleRoute]

Expand Down

0 comments on commit 312a8b3

Please sign in to comment.