This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/Shared.cs
2025-03-26 19:10:56 -04:00

15 lines
352 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; }
}