Skip to content

Commit

Permalink
feat: mudança de endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
wallanpsantos committed Dec 7, 2023
1 parent b4abf95 commit ba698e5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
import java.util.List;

@RestController
@RequestMapping("/v1/messages")
@RequestMapping("/v1/informations")
public class InformationsController {

@GetMapping
public ResponseEntity<List<String>> informations() {
return ResponseEntity.ok(List.of("Porjeto", "Backend com JWT"));
return ResponseEntity.ok(List.of("Projeto", "Backend com JWT", "FullStack"));
}

}

0 comments on commit ba698e5

Please sign in to comment.