mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
27 lines
724 B
C#
27 lines
724 B
C#
global using System.Collections.Concurrent;
|
|
|
|
// packages
|
|
global using Serilog;
|
|
global using Humanizer;
|
|
|
|
// nadekobot
|
|
global using NadekoBot;
|
|
global using NadekoBot.Services;
|
|
global using NadekoBot.Common;
|
|
global using NadekoBot.Common.Attributes;
|
|
global using NadekoBot.Extensions;
|
|
|
|
// discord
|
|
global using Discord;
|
|
global using Discord.Commands;
|
|
global using Discord.Net;
|
|
global using Discord.WebSocket;
|
|
|
|
// aliases
|
|
global using GuildPerm = Discord.GuildPermission;
|
|
global using ChannelPerm = Discord.ChannelPermission;
|
|
global using BotPermAttribute = Discord.Commands.RequireBotPermissionAttribute;
|
|
global using LeftoverAttribute = Discord.Commands.RemainderAttribute;
|
|
|
|
// non-essential
|
|
global using JetBrains.Annotations; |