Files
release-hive/src/main/java/wtf/beatrice/releasehive/service/AccountService.java
Beatrice Dellacà a0fafcc2dc
All checks were successful
continuous-integration/drone/push Build is passing
RHSRV-4 | RHSRV-5 - Implement Authentication with JWT
2024-08-07 21:14:19 +02:00

14 lines
305 B
Java

package wtf.beatrice.releasehive.service;
import wtf.beatrice.releasehive.dto.LoginUserDto;
import wtf.beatrice.releasehive.dto.RegisterUserDto;
import wtf.beatrice.releasehive.model.User;
public interface AccountService
{
User register(RegisterUserDto user);
User login(LoginUserDto user);
}