issue #2569: added model tests for Go

This commit is contained in:
Guo Huang
2016-04-12 16:07:09 -07:00
parent 3e13f69b53
commit 68f4113429
4 changed files with 377 additions and 0 deletions

View File

@@ -15,6 +15,12 @@ import org.slf4j.LoggerFactory;
public class GoClientCodegen extends DefaultCodegen implements CodegenConfig {
static Logger LOGGER = LoggerFactory.getLogger(GoClientCodegen.class);
public static final String VARIABLE_NAMING_CONVENTION = "variableNamingConvention";
public static final String PACKAGE_PATH = "packagePath";
public static final String SRC_BASE_PATH = "srcBasePath";
public static final String COMPOSER_VENDOR_NAME = "composerVendorName";
public static final String COMPOSER_PROJECT_NAME = "composerProjectName";
protected String packageName = "swagger";
protected String packageVersion = "1.0.0";