source: Prototype Application/Paw5/src/main/java/finki/paw5/web/controllers/PetController.java@ 55c0119

main
Last change on this file since 55c0119 was 55c0119, checked in by Filip Chorbeski <86695898+FilipChorbeski@…>, 17 months ago

add pet service & controller

Co-Authored-By: SazdovaEkaterina <74919977+SazdovaEkaterina@…>

  • Property mode set to 100644
File size: 306 bytes
Line 
1package finki.paw5.web.controllers;
2
3import finki.paw5.service.PetService;
4import org.springframework.stereotype.Controller;
5
6@Controller
7public class PetController {
8
9 private final PetService petService;
10
11 public PetController(PetService petService) {
12 this.petService = petService;
13 }
14
15}
Note: See TracBrowser for help on using the repository browser.