Skip to content

Commit

Permalink
fix one wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-dot committed May 15, 2024
1 parent e0cfae5 commit 5466eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backstage/packages/backend/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async function main() {
apiRouter.use('/auth', await auth(authEnv));
apiRouter.use('/techdocs', await techdocs(techdocsEnv));
apiRouter.use('/proxy', await proxy(proxyEnv));
apiRouter.use('/readme', await proxy(readmeEnv));
apiRouter.use('/readme', await readme(readmeEnv));
apiRouter.use('/search', await search(searchEnv));
apiRouter.use('/gitlab', await gitlab(gitlabEnv));

Expand Down

0 comments on commit 5466eb1

Please sign in to comment.