package com.yunan.service; import com.yunan.dto.ApiResponse; import com.yunan.dto.RegisterDTO; import com.yunan.entity.Mail; import com.yunan.pojo.User; import javax.mail.internet.AddressException; import java.io.UnsupportedEncodingException; public interface AuthService { User register(RegisterDTO registerDTO) throws AddressException, UnsupportedEncodingException; }