mirror of
https://github.com/Dannecron/spring-boot-demo.git
synced 2025-12-25 16:22:35 +03:00
6 lines
172 B
Kotlin
6 lines
172 B
Kotlin
package com.example.demo.http.responses
|
|
|
|
open class BaseResponse(val status: ResponseStatus)
|
|
|
|
fun makeOkResponse(): BaseResponse = BaseResponse(status = ResponseStatus.OK)
|