cn.mapway.document.configure.GitInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-tools-doc Show documentation
Show all versions of api-tools-doc Show documentation
auto gen doc from api with ui
The newest version!
package cn.mapway.document.configure;
/**
* Gitlab repository
*/
public class GitInfo {
/**
* gitlab token
*/
private String token;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
}