File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
modules/swagger-codegen/src/main/resources/asyncscala Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,8 @@ package {{package}}
2
2
3
3
{ {#imports} }import { {import} }
4
4
{ {/imports} }
5
- import io.swagger.client._
6
- import scala.concurrent.{ Future, Await }
7
- import scala.concurrent.duration._
5
+ import com.wordnik.swagger.client._
6
+ import scala.concurrent.Future
8
7
import collection.mutable
9
8
10
9
{ {#operations} }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ package {{invokerPackage}}
4
4
{ {/imports} }
5
5
import { {apiPackage} }._
6
6
7
- import io .swagger.client._
7
+ import com.wordnik .swagger.client._
8
8
9
9
import java.io.Closeable
10
10
@@ -22,4 +22,4 @@ class {{clientName}}(config: SwaggerConfig) extends Closeable {
22
22
def close() {
23
23
client.close()
24
24
}
25
- }
25
+ }
Original file line number Diff line number Diff line change 1
1
package { {package} }
2
2
3
3
import org.joda.time.DateTime
4
+ import java.util.UUID
4
5
5
6
{ {#models} }
6
7
@@ -10,4 +11,4 @@ case class {{classname}} (
10
11
{ {/vars} }
11
12
)
12
13
{ {/model} }
13
- { {/models} }
14
+ { {/models} }
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ organization := "{{package}}"
3
3
name := "{ {projectName} }-client"
4
4
5
5
libraryDependencies ++= Seq(
6
- "io .swagger" %% "swagger-async-httpclient" % "0.3.5",
6
+ "com.wordnik .swagger" %% "swagger-async-httpclient" % "0.3.5",
7
7
"joda-time" % "joda-time" % "2.3",
8
8
"org.joda" % "joda-convert" % "1.3.1",
9
9
"ch.qos.logback" % "logback-classic" % "1.0.13" % "provided",
You can’t perform that action at this time.
0 commit comments