5 lines
175 B
C#
5 lines
175 B
C#
namespace TelegramBot;
|
|
|
|
public class Env {
|
|
public static string Get(string var) => Environment.GetEnvironmentVariable(var) ?? throw new ($"Env var {var} is not set");
|
|
} |