vassago/Shared.cs
adam 7c7793f3b2 send message works!
...messages aren't getting stored, though.
2025-05-29 13:09:57 -04:00

17 lines
504 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();
}