NCP-3 add usercontent crud's,dto,exception and start restcontroller

This commit is contained in:
vladp
2025-11-26 13:03:20 +07:00
parent 11b74e046d
commit d9faa311a9
10 changed files with 159 additions and 3 deletions
@@ -0,0 +1,11 @@
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 {
}