Skip to content

Commit

Permalink
feat: coderabbitai 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
alsdl0629 committed Jul 5, 2024
1 parent 694ad6f commit df10348
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/main/kotlin/com/onboard/server/domain/HelloController.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package com.onboard.server.domain

import org.springframework.stereotype.Controller
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RestController

@RequestMapping("/say")
@Controller
@RestController
class HelloController {
companion object {
const val ABCDE = "abcde"
}

constructor()

@GetMapping("/hello")
fun hello() = "hello"

@GetMapping("/move")
fun move() = "move"

Check failure on line 23 in src/main/kotlin/com/onboard/server/domain/HelloController.kt

View workflow job for this annotation

GitHub Actions / lint

[ktlint] reported by reviewdog 🐶 Unexpected blank line(s) before "}" Raw Output: src/main/kotlin/com/onboard/server/domain/HelloController.kt:23:1: error: Unexpected blank line(s) before "}" (standard:no-blank-line-before-rbrace)

Check failure on line 24 in src/main/kotlin/com/onboard/server/domain/HelloController.kt

View workflow job for this annotation

GitHub Actions / lint

[ktlint] reported by reviewdog 🐶 Needless blank line(s) Raw Output: src/main/kotlin/com/onboard/server/domain/HelloController.kt:24:1: error: Needless blank line(s) (standard:no-consecutive-blank-lines)


}

0 comments on commit df10348

Please sign in to comment.