Skip to content

Commit

Permalink
[FEAT] Index Controller 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jan 15, 2024
1 parent 205d1c5 commit 550f27f
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.startlion.startlionserver.controller;


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

@RestController
public class IndexController {

@GetMapping("/")
public void index() { }
}

0 comments on commit 550f27f

Please sign in to comment.