build test

This commit is contained in:
yjnoh 2024-08-21 18:34:50 +09:00
parent d122ec9193
commit d2fb1db392

View File

@ -4,7 +4,6 @@ import com.interplug.qcast.biz.login.dto.LoginUser;
import com.interplug.qcast.biz.login.dto.UserResponse;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Slf4j
@ -19,6 +18,8 @@ public class LoginService {
}
public UserResponse getUser(LoginUser loginUser) {
log.info("test");
return loginMapper.getUser(loginUser);
}
}