mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
19 lines
531 B
C#
19 lines
531 B
C#
#nullable disable
|
|
using System.Collections;
|
|
using System.Collections.Immutable;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public class StartingGuildsService : IEnumerable<ulong>, INService
|
|
{
|
|
private readonly ImmutableList<ulong> _guilds;
|
|
|
|
public StartingGuildsService(DiscordSocketClient client)
|
|
=> _guilds = client.Guilds.Select(x => x.Id).ToImmutableList();
|
|
|
|
public IEnumerator<ulong> GetEnumerator()
|
|
=> _guilds.GetEnumerator();
|
|
|
|
IEnumerator IEnumerable.GetEnumerator()
|
|
=> _guilds.GetEnumerator();
|
|
} |