17 lines
367 B
Java
17 lines
367 B
Java
package net.Broken.webView;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.ui.Model;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
/**
|
|
* Web page controller for /music page
|
|
*/
|
|
@Controller
|
|
public class MusicWebView {
|
|
@RequestMapping("/music")
|
|
public String music(Model model){
|
|
return "music";
|
|
}
|
|
}
|