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