Skip to content

Commit

Permalink
Merge pull request #8 from Art-Chain/feat/7
Browse files Browse the repository at this point in the history
✨ feat: health check api 구현
  • Loading branch information
loveysuby authored Jul 17, 2024
2 parents 5ca9fa7 + b56acad commit 68b0a2a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/artchain/farmpro/global/health/HealthController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package artchain.farmpro.global.health;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HealthController {
@GetMapping("/health")
public String health() {
return "OK";
}
}

0 comments on commit 68b0a2a

Please sign in to comment.