This commit is contained in:
2023-06-30 14:08:15 +01:00
commit bcaa32afb1
28 changed files with 1109 additions and 0 deletions

12
NostrStreamer/Config.cs Normal file
View File

@ -0,0 +1,12 @@
namespace NostrStreamer;
public class Config
{
public Uri SrsPublicHost { get; init; } = null!;
public string App { get; init; } = null!;
public Uri SrsApi { get; init; } = null!;
public string PrivateKey { get; init; } = null!;
public string[] Relays { get; init; } = Array.Empty<string>();
}