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