Created
July 14, 2020 14:36
-
-
Save christianoguedes/35685a9d95aa6acf8aef7c1ceb391577 to your computer and use it in GitHub Desktop.
example controller for rate-limit
This file contains hidden or 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
| @RestController | |
| @RequestMapping("/") | |
| public class StartController { | |
| @GetMapping | |
| public String helloWorld() { | |
| return "Helo World"; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment