mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
- setgame/setstream use the new pubsub (also setstream will actually apply to all shards now) - setgame/setstream moved to SelfService - small cleanup
20 lines
462 B
C#
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 = ", ");
|
|
}
|
|
}
|