Initial split of the modules
This commit is contained in:
23
NadekoBot.Core/Services/IStatsService.cs
Normal file
23
NadekoBot.Core/Services/IStatsService.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NadekoBot.Services
|
||||
{
|
||||
public interface IStatsService : INService
|
||||
{
|
||||
string Author { get; }
|
||||
long CommandsRan { get; }
|
||||
string Heap { get; }
|
||||
string Library { get; }
|
||||
long MessageCounter { get; }
|
||||
double MessagesPerSecond { get; }
|
||||
long TextChannels { get; }
|
||||
long VoiceChannels { get; }
|
||||
int GuildCount { get; }
|
||||
|
||||
TimeSpan GetUptime();
|
||||
string GetUptimeString(string separator = ", ");
|
||||
void Initialize();
|
||||
Task<string> Print();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user