using System; using System.Threading.Tasks; namespace DevHive.Services.Interfaces { public interface IFriendsService { Task AddFriend(Guid userId, string friendUsername); Task RemoveFriend(Guid userId, string friendUsername); } }