You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
584 B
27 lines
584 B
3 years ago
|
/*
|
||
|
* Copyright (C), 2018-2022
|
||
|
* Project: starter
|
||
|
* FileName: AuthControllerBridge
|
||
|
* Author: Louis
|
||
|
* Date: 2022/1/19 23:45
|
||
|
*/
|
||
|
package com.fr.plugin.idnf.service;
|
||
|
|
||
|
import com.fr.decision.fun.impl.AbstractControllerRegisterProvider;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <AuthControllerBridge>
|
||
|
*
|
||
|
* @author fr.open
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class AuthControllerBridge extends AbstractControllerRegisterProvider {
|
||
|
|
||
|
@Override
|
||
|
public Class[] getControllers() {
|
||
|
return new Class[]{
|
||
|
AuthController.class
|
||
|
};
|
||
|
}
|
||
|
}
|