6public static class Endpoints
11 public static Uri Default {
get; } =
new(
"https://db.fauna.com");
17 public static Uri GetFaunaEndpoint()
19 string? endpoint = Environment.GetEnvironmentVariable(
"FAUNA_ENDPOINT");
20 if (
string.IsNullOrWhiteSpace(endpoint))
25 if (Uri.IsWellFormedUriString(endpoint, UriKind.Absolute))
27 return new Uri(endpoint);
30 throw new UriFormatException(
"Invalid FAUNA_ENDPOINT environment variable. Must be a valid URI.");