mirror of
https://github.com/LOBSTERVOVA/Tennis-Site.git
synced 2026-04-17 17:40:49 +03:00
13 lines
315 B
Java
13 lines
315 B
Java
package com.example.dateplanner.services;
|
|
|
|
import com.example.dateplanner.repositories.AppUserRepository;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
@RequiredArgsConstructor
|
|
public class AppUserService {
|
|
private final AppUserRepository appUserRepository;
|
|
|
|
}
|