blob: 564f37cdd824613095ba56b04ba6ed44713086ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package com.terminaldweller.doc;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/** The document controller class. */
@RestController
@RequestMapping(path = "api/v1/doc")
public class DocController {
private final DocService docService;
@Autowired
public DocController(DocService docService) {
this.docService = docService;
}
@GetMapping
public List<Doc> getDocs() {
return docService.getDocs();
}
}
|