HomeController.java 379 Bytes
Newer Older
Weiser's avatar
Weiser committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.SWP.SS24.Wetterdaten_sammeln.configuration;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

/**
 * Home redirection to swagger api documentation
 */
@Controller
public class HomeController {
    @RequestMapping(value = "/")
    public String index() {
        return "redirect:/swagger-ui/";
    }
}