RBLNews/RBLNews.Shared/Services/EnvironmentVariablesService.cs
iTob 5076367282
All checks were successful
Restart Docker Container on Production / build (pull_request) Successful in 3m35s
read backend api url from environment variables
2024-09-23 12:46:09 +02:00

6 lines
161 B
C#

namespace RBLNews.Shared.Services;
public class EnvironmentVariablesService
{
public string? RblApiUrl => Environment.GetEnvironmentVariable("RblApiUrl");
}