Skip to content

Commit

Permalink
SMA-20: fixed imports in AuthConfig and AuthService
Browse files Browse the repository at this point in the history
  • Loading branch information
ivamach committed Jan 27, 2024
1 parent 5e7f64d commit 5b80d28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.sportsmatch.auth;

import com.sportsmatch.repos.UserRepository;
import com.sportsmatch.repositories.UserRepository;
import lombok.RequiredArgsConstructor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.sportsmatch.dtos.AuthResponseDTO;
import com.sportsmatch.mappers.UserMapper;
import com.sportsmatch.models.User;
import com.sportsmatch.repos.UserRepository;
import com.sportsmatch.repositories.UserRepository;
import lombok.RequiredArgsConstructor;
import org.springframework.http.HttpStatus;
import org.springframework.http.HttpStatusCode;
Expand Down

0 comments on commit 5b80d28

Please sign in to comment.