vassago/Shared.cs
adam 072a76794e
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
it... works?
2025-05-15 16:50:56 -04:00

16 lines
393 B
C#

namespace vassago;
using System;
using System.Net.Http;
using vassago.Models;
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;}
}