com.fastchar.openapi.FastCharOpenAPIWeb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-openapi Show documentation
Show all versions of fastchar-openapi Show documentation
FastChar-OpenAPI is build openapi3.0 doc tool package.
The newest version!
package com.fastchar.openapi;
import com.fastchar.core.FastEngine;
import com.fastchar.interfaces.IFastWeb;
import com.fastchar.openapi.interceptor.FastOpenAPIInterceptor;
public class FastCharOpenAPIWeb implements IFastWeb {
@Override
public void onInit(FastEngine engine) throws Exception {
IFastWeb.super.onInit(engine);
engine.getInterceptors().addRoot(FastOpenAPIInterceptor.class, "/*");
}
}