12 lines
320 B
Java
12 lines
320 B
Java
package ru.soune.no_copy.controller;
|
|||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
|
||
|
|
@RestController("api/content")
|
||
|
|
@RequestMapping("api/content")
|
||
|
|
@AllArgsConstructor
|
||
|
|
public class UserContentController {
|
||
|
|
}
|