mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-02-22 22:46:01 +01:00
9 lines
274 B
C#
9 lines
274 B
C#
using DHT.Server.Service;
|
|
|
|
namespace DHT.Desktop.Server;
|
|
|
|
static class ServerConfiguration {
|
|
public static ushort Port { get; set; } = ServerUtils.FindAvailablePort(min: 50000, max: 60000);
|
|
public static string Token { get; set; } = ServerUtils.GenerateRandomToken(20);
|
|
}
|