2017-12-22 19:20:26 +01:00
|
|
|
package net.Broken.webView;
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.ui.Model;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
2018-02-28 17:59:09 +01:00
|
|
|
/**
|
|
|
|
* Web page controller for /music page
|
|
|
|
*/
|
2017-12-22 19:20:26 +01:00
|
|
|
@Controller
|
|
|
|
public class MusicWebView {
|
|
|
|
@RequestMapping("/music")
|
|
|
|
public String music(Model model){
|
2018-03-06 16:26:40 +01:00
|
|
|
return CheckPage.getPageIfReady("music");
|
2017-12-22 19:20:26 +01:00
|
|
|
}
|
|
|
|
}
|