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