예제 #1
0
파일: ReminderJob.cs 프로젝트: scp-cs/Thorn
        public ReminderJob(ILogger <ReminderJob> logger, DiscordSocketClient client, PairsService pairs, DataStorageService data)
        {
            _logger = logger;
            _pairs  = pairs;

            _channel = client.GetChannel(ulong.Parse(pairs.GetString("GENERAL_CHANNEL_ID"))) as SocketTextChannel;
            _daily   = data.GetDictionary <string>("Config/daily.json");
        }