Initial Commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.bernard.nodecames;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
|
||||
@Controller
|
||||
public class HttpController {
|
||||
|
||||
@GetMapping("/")
|
||||
public String index() {
|
||||
return "index.html";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user