CoolFace
Apppublic

sakthivikram/geo-location

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
HomeController.java17 linesDownload Raw Back to controller
1package com.georeport.controller;2 3import org.springframework.stereotype.Controller;4import org.springframework.web.bind.annotation.GetMapping;5 6@Controller7public class HomeController {8 9    /**10     * Redirect root path to the index landing page11     */12    @GetMapping("/")13    public String home() {14        return "redirect:/index.html";15    }16}17