mirror of
https://github.com/PaulReichmuth/timekeep-backend.git
synced 2026-02-06 04:53:25 +00:00
basic structure
This commit is contained in:
@@ -1,4 +1,24 @@
|
|||||||
package de.pnreichmuth.timekeep_backend.controllers;
|
package de.pnreichmuth.timekeep_backend.controllers;
|
||||||
|
|
||||||
|
import de.pnreichmuth.timekeep_backend.entities.Racer;
|
||||||
|
import de.pnreichmuth.timekeep_backend.entities.Team;
|
||||||
|
import de.pnreichmuth.timekeep_backend.services.RacerService;
|
||||||
|
import de.pnreichmuth.timekeep_backend.services.TeamService;
|
||||||
|
import de.pnreichmuth.timekeep_backend.wsto.RacerWSTO;
|
||||||
|
import de.pnreichmuth.timekeep_backend.wsto.TeamWSTO;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/members")
|
||||||
|
@Slf4j
|
||||||
|
@RequiredArgsConstructor
|
||||||
public class TeamMemberRestController {
|
public class TeamMemberRestController {
|
||||||
|
private final TeamService teamService;
|
||||||
|
private final RacerService racerService;
|
||||||
|
// ///////////////////////////////////////////////BEGIN GET MAPPINGS///////////////////////////////////////////////////
|
||||||
|
|
||||||
|
// ///////////////////////////////////////////////BEGIN POST MAPPINGS///////////////////////////////////////////////////
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user