I Am A Teapot

This commit is contained in:
Индекс Зиро 2025-02-20 10:57:42 +03:00
parent 21d002bce5
commit eb9e702545

View File

@ -105,4 +105,9 @@ public class EmployeeController {
return employeeService.getEmployeeByLogin(login); return employeeService.getEmployeeByLogin(login);
} }
@GetMapping("/coffee")
public ResponseEntity<HttpStatusCode> coffee() {
return new ResponseEntity<>(HttpStatus.I_AM_A_TEAPOT);
}
} }