feat(security): creado AuthResponse para devolver el token en register y login

parent 1c6d5af2
package com.example.apprecetas.user.infrastructure.controller.dto;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class AuthResponse {
private String token;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment