vassago/Shared.cs
Adam R Grey 3031779e24
All checks were successful
greyn/vassago/pipeline/head This commit looks good
gitea/vassago/pipeline/head This commit looks good
gitea.arg.rip/vassago/pipeline/head This commit looks good
fork: vassago
2023-06-01 00:03:23 -04:00

15 lines
354 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 ChattingContext dbContext { get; set; }
public static HttpClient HttpClient { get; internal set; } = new HttpClient();
}