Store stard status in the database

This commit is contained in:
Ske
2021-06-10 12:52:47 +02:00
parent 26dc69e5a4
commit ae9ed0f4ee
5 changed files with 103 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
using NodaTime;
namespace PluralKit.Core
{
public class PKShardInfo
{
public int Id { get; }
public ShardStatus Status { get; }
public float? Ping { get; }
public Instant? LastHeartbeat { get; }
public Instant? LastConnection { get; }
public enum ShardStatus
{
Down = 0,
Up = 1
}
}
}