Skip to content

Commit

Permalink
feat: ApiDefinitionExtension 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Jun 13, 2024
1 parent 8a76037 commit 1f6397a
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package com.few.api.web.controller.helper

fun String.toIdentifier(): String {
return this + "Api"
}

fun String.toApiDescription(): String {
return this + "Description"
}

fun String.toSummary(): String {
return this + "Summary"
}

fun String.toRequestSchema(): String {
return this + "RequestSchema"
}

fun String.toResponseSchema(): String {
return this + "ResponseSchema"
}

class ApiDefinitionExtension

0 comments on commit 1f6397a

Please sign in to comment.