Files
nadekobot/src/NadekoBot/Services/IStatsService.cs
Kwoth 65b4c1fab7 - Owner only attributes will now use fresh creds every time (no need for restart for owner only commands to start working once creds are changed)
- setgame/setstream use the new pubsub (also setstream will actually apply to all shards now)
- setgame/setstream moved to SelfService
- small cleanup
2021-09-06 21:34:49 +02:00

20 lines
462 B
C#

using System;
namespace NadekoBot.Services
{
public interface IStatsService
{
string Author { get; }
long CommandsRan { get; }
string Heap { get; }
string Library { get; }
long MessageCounter { get; }
double MessagesPerSecond { get; }
long TextChannels { get; }
long VoiceChannels { get; }
TimeSpan GetUptime();
string GetUptimeString(string separator = ", ");
}
}