|
@@ -0,0 +1,12 @@
|
|
|
|
+package com.persagy.calendar.controller;
|
|
|
|
+
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
+
|
|
|
|
+@RestController
|
|
|
|
+@RequestMapping(value = "/holiday", method = RequestMethod.POST)
|
|
|
|
+public class HolidayController {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|