blob: 7ee9e5ae3ac0e6f20612a5c3f9e98ed554493413 [file] [log] [blame]
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 {
}