mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-27 12:09:25 +00:00
10 lines
304 B
C#
10 lines
304 B
C#
namespace Spacebar.UApi.Services;
|
|
|
|
public class UApiConfiguration {
|
|
public UApiConfiguration(IConfiguration config) {
|
|
config.GetRequiredSection("Spacebar").GetRequiredSection("UApi").Bind(this);
|
|
}
|
|
|
|
// ... for unhandled routes
|
|
public string? FallbackApiEndpoint { get; set; }
|
|
} |