69 lines
No EOL
2.4 KiB
C#
69 lines
No EOL
2.4 KiB
C#
// Project Makoto
|
|
// Copyright (C) 2024 Fortunevale
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY
|
|
|
|
global using System;
|
|
global using System.Collections.Generic;
|
|
global using System.Data;
|
|
global using System.Diagnostics;
|
|
global using System.Drawing;
|
|
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.Runtime.InteropServices;
|
|
global using System.Security.Cryptography;
|
|
global using System.Text;
|
|
global using System.Text.RegularExpressions;
|
|
global using System.Threading;
|
|
global using System.Threading.Tasks;
|
|
global using System.Collections;
|
|
global using System.Reflection;
|
|
|
|
global using DisCatSharp;
|
|
global using DisCatSharp.ApplicationCommands;
|
|
global using DisCatSharp.ApplicationCommands.Attributes;
|
|
global using DisCatSharp.ApplicationCommands.Context;
|
|
global using DisCatSharp.CommandsNext;
|
|
global using DisCatSharp.CommandsNext.Attributes;
|
|
global using DisCatSharp.CommandsNext.Converters;
|
|
global using DisCatSharp.Entities;
|
|
global using DisCatSharp.Enums;
|
|
global using DisCatSharp.EventArgs;
|
|
global using DisCatSharp.Interactivity;
|
|
global using DisCatSharp.Interactivity.Extensions;
|
|
global using DisCatSharp.Extensions.TwoFactorCommands;
|
|
global using DisCatSharp.Extensions.TwoFactorCommands.ApplicationCommands;
|
|
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
|
|
global using ProjectMakoto;
|
|
global using ProjectMakoto.Commands;
|
|
global using ProjectMakoto.Database;
|
|
global using ProjectMakoto.Entities;
|
|
global using ProjectMakoto.Enums;
|
|
global using ProjectMakoto.Events;
|
|
global using ProjectMakoto.Exceptions;
|
|
global using ProjectMakoto.Util;
|
|
global using ProjectMakoto.Plugins;
|
|
global using ProjectMakoto.Util.SystemMonitor;
|
|
global using ProjectMakoto.Util.JsonSerializers;
|
|
|
|
global using Xorog.UniversalExtensions;
|
|
global using Xorog.UniversalExtensions.Entities;
|
|
global using Xorog.UniversalExtensions.Enums;
|
|
global using Xorog.UniversalExtensions.Converters;
|
|
|
|
global using Serilog;
|
|
global using Serilog.Events;
|
|
|
|
global using MySqlConnector;
|
|
global using Newtonsoft.Json;
|
|
global using QuickChart; |