Created
April 21, 2023 19:51
-
-
Save pedroluiznogueira/f2efbe53045cd67ef13e3bcc0ac29125 to your computer and use it in GitHub Desktop.
Route wildcards
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Get('ab*cd') | |
findAll() { | |
return 'This route uses a wildcard'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment