mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-08 14:57:54 +00:00
Add basic support for multi-node clustering
This commit is contained in:
parent
b09a34d9cd
commit
d61f61fead
3 changed files with 53 additions and 10 deletions
|
|
@ -15,5 +15,14 @@ namespace PluralKit.Bot
|
|||
public int? MaxShardConcurrency { get; set; }
|
||||
|
||||
public ulong? AdminRole { get; set; }
|
||||
|
||||
public ClusterSettings? Cluster { get; set; }
|
||||
|
||||
public record ClusterSettings
|
||||
{
|
||||
public string NodeName { get; set; }
|
||||
public int TotalShards { get; set; }
|
||||
public int TotalNodes { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue