corrected request and response url

This commit is contained in:
MaximZaitsev
2016-07-22 14:59:15 +03:00
parent 29f4c0c2d2
commit 5b71ae0692
+4 -4
View File
@@ -18,10 +18,10 @@ import kotlin.concurrent.thread
val carServerPort: Int = 7925 val carServerPort: Int = 7925
val webServerPort: Int = 7926 val webServerPort: Int = 7926
val handlerThreadsCount: Int = 100 val handlerThreadsCount: Int = 100
val getLocationUrl = "getLocation" val getLocationUrl = "/getLocation"
val routeDoneUrl = "routeDone" val routeDoneUrl = "/routeDone"
val setRouteUrl = "route" val setRouteUrl = "/route"
val connectUrl = "connect" val connectUrl = "/connect"
fun main(args: Array<String>) { fun main(args: Array<String>) {