INC-1 add create user endpoint,generate tokens

This commit is contained in:
vladp
2025-11-24 12:29:32 +07:00
parent ce57cae177
commit 1919883628
17 changed files with 332 additions and 20 deletions
@@ -0,0 +1,7 @@
package ru.soune.no_copy.exception;
public class UserAlreadyExistsException extends RuntimeException {
public UserAlreadyExistsException(String message) {
super(message);
}
}