2024-08-19 16:12:28 +02:00
|
|
|
using Remora.Discord.API.Abstractions.Objects;
|
|
|
|
|
using Remora.Rest.Core;
|
|
|
|
|
|
|
|
|
|
namespace Catalogger.Backend.Cache;
|
|
|
|
|
|
|
|
|
|
public interface IInviteCache
|
|
|
|
|
{
|
|
|
|
|
public Task<IEnumerable<IInvite>> TryGetAsync(Snowflake guildId);
|
|
|
|
|
public Task SetAsync(Snowflake guildId, IEnumerable<IInvite> invites);
|
2024-10-09 17:35:11 +02:00
|
|
|
}
|