mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 20:25:50 +00:00
polish
This commit is contained in:
parent
75504b859f
commit
d4fc5b036b
1 changed files with 16 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
|||
package org.springframework.samples.petclinic.appointments;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
|
||||
@Controller
|
||||
@RequestMapping("/appointments")
|
||||
public class AppointmentsController {
|
||||
|
||||
@RequestMapping(method = RequestMethod.GET)
|
||||
public void get() {
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue