1 package com.supwisdom.institute.backend.base.api.v1.controller.authn;
3 import io.swagger.annotations.Api;
4 import lombok.extern.slf4j.Slf4j;
6 import org.springframework.web.bind.annotation.RequestMapping;
7 import org.springframework.web.bind.annotation.RestController;
9 @Api(value = "BaseAuthnResource", tags = { "BaseAuthnResource" }, description = "资源接口(认证、授权用)")
12 @RequestMapping("/v1/authn/resource")
13 public class AuthnResourceController {