12345678910111213141516171819 |
- package com.yihu.hos.arbiter.controllers;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * @author Airhead
- * @since 2017/2/6.
- */
- @RestController
- @RequestMapping("/serviceFlow")
- public class ServiceFlowController {
- @RequestMapping(method = RequestMethod.GET)
- public String get() {
- return "{}";
- }
- }
|