|
@@ -0,0 +1,17 @@
|
|
|
+package org.diagbot.push.controller;
|
|
|
+
|
|
|
+import org.diagbot.pub.web.BaseController;
|
|
|
+import org.springframework.stereotype.Controller;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+@Controller
|
|
|
+@RequestMapping("/graph")
|
|
|
+public class GraphController extends BaseController {
|
|
|
+ {
|
|
|
+ listView = "/pages/graph/list.html";
|
|
|
+ }
|
|
|
+
|
|
|
+ @RequestMapping({"/index"})
|
|
|
+ public String index() {
|
|
|
+ return listView;
|
|
|
+ }
|
|
|
+}
|