using EonaCat.gRPC.Core.Entities; namespace EonaCat.gRPC.Core.Interfaces.Services; public interface IUserService { Task CreateUser(UserEntity user); Task> GetAsync(); Task GetAsync(long id); }