-
Notifications
You must be signed in to change notification settings - Fork 3
/
GlobalUsings.cs
61 lines (61 loc) · 2.39 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
global using DSharpPlus;
global using DSharpPlus.Commands;
global using DSharpPlus.Commands.ArgumentModifiers;
global using DSharpPlus.Commands.ContextChecks;
global using DSharpPlus.Commands.EventArgs;
global using DSharpPlus.Commands.Exceptions;
global using DSharpPlus.Commands.Processors.TextCommands;
global using DSharpPlus.Commands.Processors.TextCommands.Parsing;
global using DSharpPlus.Commands.Processors.MessageCommands;
global using DSharpPlus.Commands.Processors.SlashCommands;
global using DSharpPlus.Commands.Processors.SlashCommands.ArgumentModifiers;
global using DSharpPlus.Commands.Processors.UserCommands;
global using DSharpPlus.Commands.Trees;
global using DSharpPlus.Commands.Trees.Metadata;
global using DSharpPlus.Entities;
global using DSharpPlus.EventArgs;
global using DSharpPlus.Exceptions;
global using DSharpPlus.Extensions;
global using DSharpPlus.Interactivity;
global using DSharpPlus.Interactivity.Enums;
global using DSharpPlus.Interactivity.EventHandling;
global using DSharpPlus.Interactivity.Extensions;
global using DSharpPlus.Net.Gateway;
global using HumanDateParser;
global using Humanizer;
global using MechanicalMilkshake.Commands;
global using MechanicalMilkshake.Commands.Owner;
global using MechanicalMilkshake.Entities;
global using MechanicalMilkshake.Entities.EvalCommands;
global using MechanicalMilkshake.Entities.MessageCaching;
global using MechanicalMilkshake.Events;
global using MechanicalMilkshake.Helpers;
global using MechanicalMilkshake.Tasks;
global using Microsoft.CodeAnalysis.CSharp.Scripting;
global using Microsoft.CodeAnalysis.Scripting;
global using Microsoft.Extensions.Logging;
global using MimeTypes;
global using Minio;
global using Minio.Exceptions;
global using Newtonsoft.Json;
global using Newtonsoft.Json.Linq;
global using StackExchange.Redis;
global using System;
global using System.Collections.Generic;
global using System.ComponentModel;
global using System.Diagnostics;
global using System.Globalization;
global using System.IO;
global using System.IO.Compression;
global using System.Linq;
global using System.Net;
global using System.Net.Http;
global using System.Net.Http.Headers;
global using System.Net.Http.Json;
global using System.Net.Sockets;
global using System.Reflection;
global using System.Runtime.InteropServices;
global using System.Text;
global using System.Text.RegularExpressions;
global using System.Threading.Tasks;
global using System.Web;