T153 Removed files

This commit is contained in:
2021-01-13 17:06:20 +01:00
parent 7afc437686
commit 8c3a6a9801
6 changed files with 7 additions and 289 deletions

View File

@@ -1,20 +0,0 @@
package com.release11.klaus.controller;
import com.release11.klaus.model.MockedMessageDto;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Slf4j
@Controller
@RequestMapping
@AllArgsConstructor
public class MainController {
@GetMapping("/home/tools")
public String showGetMockedResponse(final MockedMessageDto mockedMessageDto) {
return "tools";
}
}