You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -154,7 +154,8 @@ Great for creating libraries on your ci server, from the [Swagger Editor](http:/
154
154
There are different aspects of customizing the code generator beyond just creating or modifying templates. Each language has a supporting configuration file to handle different type mappings, etc:
155
155
156
156
```
157
-
$ ls -1 modules/swagger-codegen/src/main/java/com/wordnik/swagger/codegen/languages/
157
+
$ ls -1 modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/
158
+
AkkaScalaClientCodegen.java
158
159
AndroidClientCodegen.java
159
160
AsyncScalaClientCodegen.java
160
161
CSharpClientCodegen.java
@@ -167,6 +168,7 @@ PhpClientCodegen.java
167
168
Python3ClientCodegen.java
168
169
PythonClientCodegen.java
169
170
Qt5CPPGenerator.java
171
+
RetrofitClientCodegen.java
170
172
RubyClientCodegen.java
171
173
ScalaClientCodegen.java
172
174
ScalatraServerCodegen.java
@@ -175,6 +177,7 @@ StaticDocCodegen.java
175
177
StaticHtmlGenerator.java
176
178
SwaggerGenerator.java
177
179
SwaggerYamlGenerator.java
180
+
SwiftGenerator.java
178
181
TizenClientCodegen.java
179
182
```
180
183
@@ -237,7 +240,7 @@ To change, for example, the prefix for the Objective-C generated files, simply s
237
240
```
238
241
package com.mycompany.swagger.codegen;
239
242
240
-
import com.wordnik.swagger.codegen.languages.*;
243
+
import io.swagger.codegen.languages.*;
241
244
242
245
public class MyObjcCodegen extends ObjcClientCodegen {
0 commit comments