com.gitee.easyopen.template.AbstractTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyopen-mini Show documentation
Show all versions of easyopen-mini Show documentation
easyopen mini版,保留基本签名校验,文档功能。https://gitee.com/durcframework/easyopen
package com.gitee.easyopen.template;
import com.gitee.easyopen.ApiConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author tanghc
*/
public class AbstractTemplate {
protected Logger logger = LoggerFactory.getLogger(getClass());
protected ApiConfig apiConfig;
public AbstractTemplate(ApiConfig apiConfig) {
this.apiConfig = apiConfig;
}
}