wuchimedes | 223bfab | 2025-04-04 17:16:05 +0800 | [diff] [blame] | 1 | package com.example.g8backend.controller; |
| 2 | |
| 3 | import org.springframework.beans.factory.annotation.Autowired; |
| 4 | import org.springframework.http.ResponseEntity; |
| 5 | import org.springframework.web.bind.annotation.GetMapping; |
| 6 | import org.springframework.web.bind.annotation.PathVariable; |
| 7 | import org.springframework.web.bind.annotation.RequestMapping; |
| 8 | import org.springframework.web.bind.annotation.RestController; |
| 9 | import com.example.g8backend.service.ITrackerService; |
| 10 | |
| 11 | @RestController |
| 12 | @RequestMapping("/announce") |
| 13 | public class TrackerController { |
| 14 | |
| 15 | } |