replace tab with spaces, minor code format change (#8774)

This commit is contained in:
William Cheng
2021-02-22 19:46:11 +08:00
committed by GitHub
parent e6b44349ba
commit 764a3b044c
26 changed files with 292 additions and 285 deletions

View File

@@ -5,6 +5,7 @@ package {{package}}
{{#reactive}}
import kotlinx.coroutines.flow.Flow;
{{/reactive}}
{{#operations}}
interface {{classname}}Service {
{{#operation}}

View File

@@ -3,6 +3,7 @@ package org.openapitools.api
import org.openapitools.model.ModelApiResponse
import org.openapitools.model.Pet
import kotlinx.coroutines.flow.Flow;
interface PetApiService {
suspend fun addPet(body: Pet): Unit

View File

@@ -2,6 +2,7 @@ package org.openapitools.api
import org.openapitools.model.Order
import kotlinx.coroutines.flow.Flow;
interface StoreApiService {
suspend fun deleteOrder(orderId: kotlin.String): Unit

View File

@@ -2,6 +2,7 @@ package org.openapitools.api
import org.openapitools.model.User
import kotlinx.coroutines.flow.Flow;
interface UserApiService {
suspend fun createUser(body: User): Unit

View File

@@ -2,6 +2,7 @@ package org.openapitools.api
import org.openapitools.model.ModelApiResponse
import org.openapitools.model.Pet
interface PetApiService {
fun addPet(body: Pet): Unit

View File

@@ -1,6 +1,7 @@
package org.openapitools.api
import org.openapitools.model.Order
interface StoreApiService {
fun deleteOrder(orderId: kotlin.String): Unit

View File

@@ -1,6 +1,7 @@
package org.openapitools.api
import org.openapitools.model.User
interface UserApiService {
fun createUser(body: User): Unit