| package com.example.g8backend.controller; |
| |
| import org.springframework.beans.factory.annotation.Autowired; |
| import org.springframework.http.ResponseEntity; |
| import org.springframework.web.bind.annotation.GetMapping; |
| import org.springframework.web.bind.annotation.PathVariable; |
| import org.springframework.web.bind.annotation.RequestMapping; |
| import org.springframework.web.bind.annotation.RestController; |
| import com.example.g8backend.service.ITrackerService; |
| |
| @RestController |
| @RequestMapping("/announce") |
| public class TrackerController { |
| |
| } |