feat(api): add news to /api/meta response

This commit is contained in:
sam 2024-10-24 20:59:26 +02:00
parent 31b6ac2cac
commit 5c57b75335
Signed by: sam
GPG key ID: 5F3C3C1B3166639D
6 changed files with 147 additions and 5 deletions

View file

@ -62,5 +62,7 @@ public class Config
public int Port { get; init; } = 5000;
public string BaseUrl { get; init; } = null!;
public string Address => $"http://{Host}:{Port}";
public ulong? NewsChannel { get; init; }
}
}