-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
GlobalUsings.cs
32 lines (32 loc) · 1.1 KB
/
GlobalUsings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
global using Cliptok.CommandChecks;
global using Cliptok.Enums;
global using Cliptok.Events;
global using Cliptok.Helpers;
global using DSharpPlus;
global using DSharpPlus.CommandsNext;
global using DSharpPlus.CommandsNext.Attributes;
global using DSharpPlus.CommandsNext.Exceptions;
global using DSharpPlus.Entities;
global using DSharpPlus.EventArgs;
global using DSharpPlus.SlashCommands;
global using Microsoft.Extensions.Logging;
global using Newtonsoft.Json;
global using Newtonsoft.Json.Linq;
global using Serilog;
global using Serilog.Sinks.SystemConsole.Themes;
global using StackExchange.Redis;
global using System;
global using System.Collections.Generic;
global using System.Diagnostics;
global using System.IO;
global using System.Linq;
global using System.Net;
global using System.Net.Http;
global using System.Net.Http.Headers;
global using System.Runtime.InteropServices;
global using System.Text;
global using System.Text.RegularExpressions;
global using System.Threading.Tasks;
global using System.Web;
global using static Cliptok.CommandChecks.ServerPerms;
global using static Cliptok.Helpers.ShellCommand;