parent
bfce07894c
commit
8243c7ba98
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2022 the original author or authors.
|
||||
* Copyright 2012-2024 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2022 the original author or authors.
|
||||
* Copyright 2012-2024 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -26,15 +26,15 @@ import reactor.core.publisher.Mono
|
|||
class MyUserHandler {
|
||||
|
||||
fun getUser(request: ServerRequest?): Mono<ServerResponse> {
|
||||
return ServerResponse.ok().build()
|
||||
/**/ return ServerResponse.ok().build()
|
||||
}
|
||||
|
||||
fun getUserCustomers(request: ServerRequest?): Mono<ServerResponse> {
|
||||
return ServerResponse.ok().build()
|
||||
/**/ return ServerResponse.ok().build()
|
||||
}
|
||||
|
||||
fun deleteUser(request: ServerRequest?): Mono<ServerResponse> {
|
||||
return ServerResponse.ok().build()
|
||||
/**/ return ServerResponse.ok().build()
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2022 the original author or authors.
|
||||
* Copyright 2012-2024 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -25,15 +25,15 @@ import org.springframework.web.servlet.function.ServerResponse
|
|||
class MyUserHandler {
|
||||
|
||||
fun getUser(request: ServerRequest?): ServerResponse {
|
||||
return ServerResponse.ok().build()
|
||||
/**/ return ServerResponse.ok().build()
|
||||
}
|
||||
|
||||
fun getUserCustomers(request: ServerRequest?): ServerResponse {
|
||||
return ServerResponse.ok().build()
|
||||
/**/ return ServerResponse.ok().build()
|
||||
}
|
||||
|
||||
fun deleteUser(request: ServerRequest?): ServerResponse {
|
||||
return ServerResponse.ok().build()
|
||||
/**/ return ServerResponse.ok().build()
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue