Skip to content

Commit

Permalink
chore: move :address group -> wallet/:address
Browse files Browse the repository at this point in the history
  • Loading branch information
peterferguson committed Apr 4, 2024
1 parent 3da9d44 commit e9fcba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default new Elysia()
)
.get("/", () => "Onit XMTP bot 🤖")
.group(
"/:address",
"/wallet/:address",
{ params: t.Object({ address: AddressLiteral }) },
(app) => {
return app.get("/", async ({ params: { address } }) => {
Expand Down

0 comments on commit e9fcba9

Please sign in to comment.