vassago/Shared.cs
adam 736fc3643b
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
stop button
see #55
2025-06-22 14:13:22 -04:00

18 lines
558 B
C#

namespace vassago;
using System;
using System.Net.Http;
using vassago.Models;
using vassago.ProtocolInterfaces;
public static class Shared
{
public static Random r = new Random();
public static string DBConnectionString { get; set; }
public static HttpClient HttpClient { get; internal set; } = new HttpClient();
public static bool SetupSlashCommands { get; set; }
public static Uri API_URL { get; set; }
public static List<ProtocolInterface> ProtocolList { get; set; } = new();
public static WebApplication App { get; set; }
}