Skip to content
Snippets Groups Projects

Sprint 1 Build

Merged Richard Githuba requested to merge test into main
71 files
+ 2997
4
Compare changes
  • Side-by-side
  • Inline
Files
71
package hackathon_swap_project.hackathon.Home;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HomeController {
@GetMapping("/")
public String showHomePage() {
return "Home";
}
}
Loading