package Viettel.authen.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class AdminController {
@RequestMapping({ "/admin" })
public String firstPage() {
return "Hello World";
}
}