├── .gitignore ├── .gitlab-ci.yml ├── DiscordBridge ├── DiscordBridge.csproj ├── Dockerfile ├── Program.cs ├── README.md └── docker-compose.yml ├── LICENSE ├── README.md ├── Revolt.Net.Commands ├── AssemblyInfo.cs ├── AsyncEvent.cs ├── Attributes │ ├── AliasAttribute.cs │ ├── CommandAttribute.cs │ ├── DontAutoLoadAttribute.cs │ ├── DontInjectAttribute.cs │ ├── GroupAttribute.cs │ ├── NameAttribute.cs │ ├── NamedArgumentTypeAttribute.cs │ ├── OverrideTypeReaderAttribute.cs │ ├── ParameterPreconditionAttribute.cs │ ├── PreconditionAttribute.cs │ ├── Preconditions │ │ ├── GroupOnlyAttribute.cs │ │ ├── RequireBotOwnerAttribute.cs │ │ ├── RequireBotServerPermissionAttribute.cs │ │ ├── RequireGroupOwnerAttribute.cs │ │ ├── RequireServerPermissionsAttribute.cs │ │ └── TextChannelOnlyAttribute.cs │ ├── PriorityAttribute.cs │ ├── RemainderAttribute.cs │ ├── RemarksAttribute.cs │ └── SummaryAttribute.cs ├── Builders │ ├── CommandBuilder.cs │ ├── ModuleBuilder.cs │ ├── ModuleClassBuilder.cs │ └── ParameterBuilder.cs ├── CollectionExtensions.cs ├── CommandContext.cs ├── CommandError.cs ├── CommandException.cs ├── CommandMatch.cs ├── CommandParser.cs ├── CommandService.cs ├── CommandServiceConfig.cs ├── EmptyServiceProvider.cs ├── Extensions │ ├── CommandServiceExtensions.cs │ ├── IEnumerableExtensions.cs │ └── MessageExtensions.cs ├── ICommandContext.cs ├── IModuleBase.cs ├── Info │ ├── CommandInfo.cs │ ├── ModuleInfo.cs │ └── ParameterInfo.cs ├── LogManager.cs ├── LogMessage.cs ├── Logger.cs ├── Map │ ├── CommandMap.cs │ └── CommandMapNode.cs ├── ModuleBase.cs ├── MultiMatchHandling.cs ├── Optional.cs ├── Preconditions.cs ├── PrimitiveParsers.cs ├── README.md ├── Readers │ ├── EnumTypeReader.cs │ ├── NamedArgumentTypeReader.cs │ ├── NullableTypeReader.cs │ ├── PrimitiveTypeReader.cs │ ├── RoleTypeReader.cs │ ├── TimeSpanTypeReader.cs │ ├── TypeReader.cs │ └── UserTypeReader.cs ├── Results │ ├── ExecuteResult.cs │ ├── IResult.cs │ ├── ParseResult.cs │ ├── PreconditionGroupResult.cs │ ├── PreconditionResult.cs │ ├── RuntimeResult.cs │ ├── SearchResult.cs │ └── TypeReaderResult.cs ├── Revolt.Net.Commands.csproj ├── RevoltCommandContext.cs ├── RunMode.cs └── Utilities │ ├── QuotationAliasUtils.cs │ └── ReflectionUtils.cs ├── Revolt.Net.Tests ├── Rest │ ├── Bots.cs │ ├── Info.cs │ └── Invites.cs ├── Revolt.Net.Tests.csproj ├── Static.cs └── Using.cs ├── Revolt.Net ├── Attachment.cs ├── BaseMessage.cs ├── CacheExtensionMethods.cs ├── Category.cs ├── Channels │ ├── Channel.cs │ ├── DirectMessageChannel.cs │ ├── GroupChannel.cs │ ├── LastMessage.cs │ ├── MessageChannel.cs │ ├── SavedMessagesChannel.cs │ └── TextChannel.cs ├── FillPartial.cs ├── Internal │ ├── AsyncEvent.cs │ ├── CollectionExtensions.cs │ └── Preconditions.cs ├── Member.cs ├── Message.cs ├── MessageEditData.cs ├── MutualRelationships.cs ├── ObjectMessage.cs ├── Permissions.cs ├── README.md ├── Relation.cs ├── Relationship.cs ├── Revolt.Net.csproj ├── RevoltApiInfo.cs ├── RevoltClient.Events.cs ├── RevoltClient.Request.cs ├── RevoltClient.WebSocket.cs ├── RevoltClient.cs ├── RevoltClientChannels.cs ├── RevoltClientSelf.cs ├── RevoltClientServers.cs ├── RevoltClientUsers.cs ├── RevoltObject.cs ├── RevoltRestClientBots.cs ├── RevoltRestClientInvites.cs ├── RevoltRestClientServers.cs ├── RevoltRestClientUsers.cs ├── Role.cs ├── SelfMessage.cs ├── Server.cs ├── Session.cs ├── SystemMessage.cs └── User.cs ├── RevoltBot.sln ├── RevoltBot.sln.DotSettings.user ├── Taco ├── Attributes │ ├── HiddenAttribute.cs │ ├── RequireDeveloperAttribute.cs │ └── RequireServerModeratorAttribute.cs ├── CommandHandling │ ├── CommandHandler.cs │ └── TacoModuleBase.cs ├── Config.cs ├── ExtensionMethods.cs ├── ManPages.cs ├── Modules │ ├── AzurLaneCommands.cs │ ├── CoreCommands.cs │ ├── DevCommands.cs │ ├── FunCommands.cs │ ├── ImageGenCommands.cs │ ├── ModerationCommands.cs │ ├── SnipeModule.cs │ ├── TestCommands.cs │ └── UtilityCommands.cs ├── Mongo.cs ├── Program.cs ├── README.md ├── Resources │ ├── 02ily.png │ ├── EpicUberFruit.gif │ ├── Fuck.png │ ├── JesusCarry.png │ ├── KillList.png │ ├── LinuxDistros.json │ ├── LovedList.png │ ├── RetardFound.png │ ├── UberFruit.png │ └── flooshed.png ├── ServerLogging.cs ├── Taco.csproj ├── TacoCommandContext.cs └── Util │ ├── ArchReposApi.cs │ ├── EtherScan.cs │ ├── HelpUtil.cs │ ├── ImageGen.cs │ ├── IpApi.cs │ ├── LinuxDistro.cs │ └── Util.cs └── docs ├── .gitignore ├── babel.config.js ├── config-commands.yaml ├── config.yaml ├── docfx-commands.json ├── docfx.json ├── docs └── root │ └── index.md ├── docusaurus.config.js ├── generate.sh ├── package.json ├── sidebars.js ├── src └── css │ └── custom.css ├── static ├── .nojekyll └── img │ ├── docusaurus.png │ ├── favicon.ico │ └── logo.svg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /DiscordBridge/DiscordBridge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/DiscordBridge/DiscordBridge.csproj -------------------------------------------------------------------------------- /DiscordBridge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/DiscordBridge/Dockerfile -------------------------------------------------------------------------------- /DiscordBridge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/DiscordBridge/Program.cs -------------------------------------------------------------------------------- /DiscordBridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/DiscordBridge/README.md -------------------------------------------------------------------------------- /DiscordBridge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/DiscordBridge/docker-compose.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/README.md -------------------------------------------------------------------------------- /Revolt.Net.Commands/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/AssemblyInfo.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/AsyncEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/AsyncEvent.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/AliasAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/AliasAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/CommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/CommandAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/DontAutoLoadAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/DontAutoLoadAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/DontInjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/DontInjectAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/GroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/GroupAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/NameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/NameAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/NamedArgumentTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/NamedArgumentTypeAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/OverrideTypeReaderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/OverrideTypeReaderAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/ParameterPreconditionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/ParameterPreconditionAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/PreconditionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/PreconditionAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/Preconditions/GroupOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/Preconditions/GroupOnlyAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/Preconditions/RequireBotOwnerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/Preconditions/RequireBotOwnerAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/Preconditions/RequireBotServerPermissionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/Preconditions/RequireBotServerPermissionAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/Preconditions/RequireGroupOwnerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/Preconditions/RequireGroupOwnerAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/Preconditions/RequireServerPermissionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/Preconditions/RequireServerPermissionsAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/Preconditions/TextChannelOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/Preconditions/TextChannelOnlyAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/PriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/PriorityAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/RemainderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/RemainderAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/RemarksAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/RemarksAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Attributes/SummaryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Attributes/SummaryAttribute.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Builders/CommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Builders/CommandBuilder.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Builders/ModuleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Builders/ModuleBuilder.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Builders/ModuleClassBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Builders/ModuleClassBuilder.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Builders/ParameterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Builders/ParameterBuilder.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/CollectionExtensions.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/CommandContext.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Revolt.Net.Commands/CommandError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/CommandError.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/CommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/CommandException.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/CommandMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/CommandMatch.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/CommandParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/CommandParser.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/CommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/CommandService.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/CommandServiceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/CommandServiceConfig.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/EmptyServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/EmptyServiceProvider.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Extensions/CommandServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Extensions/CommandServiceExtensions.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Extensions/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Extensions/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Extensions/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Extensions/MessageExtensions.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/ICommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/ICommandContext.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/IModuleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/IModuleBase.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Info/CommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Info/CommandInfo.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Info/ModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Info/ModuleInfo.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Info/ParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Info/ParameterInfo.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/LogManager.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/LogMessage.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Logger.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Map/CommandMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Map/CommandMap.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Map/CommandMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Map/CommandMapNode.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/ModuleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/ModuleBase.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/MultiMatchHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/MultiMatchHandling.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Optional.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Preconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Preconditions.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/PrimitiveParsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/PrimitiveParsers.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/README.md -------------------------------------------------------------------------------- /Revolt.Net.Commands/Readers/EnumTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Readers/EnumTypeReader.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Readers/NamedArgumentTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Readers/NamedArgumentTypeReader.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Readers/NullableTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Readers/NullableTypeReader.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Readers/PrimitiveTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Readers/PrimitiveTypeReader.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Readers/RoleTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Readers/RoleTypeReader.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Readers/TimeSpanTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Readers/TimeSpanTypeReader.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Readers/TypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Readers/TypeReader.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Readers/UserTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Readers/UserTypeReader.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Results/ExecuteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Results/ExecuteResult.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Results/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Results/IResult.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Results/ParseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Results/ParseResult.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Results/PreconditionGroupResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Results/PreconditionGroupResult.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Results/PreconditionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Results/PreconditionResult.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Results/RuntimeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Results/RuntimeResult.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Results/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Results/SearchResult.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Results/TypeReaderResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Results/TypeReaderResult.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Revolt.Net.Commands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Revolt.Net.Commands.csproj -------------------------------------------------------------------------------- /Revolt.Net.Commands/RevoltCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/RevoltCommandContext.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/RunMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/RunMode.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Utilities/QuotationAliasUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Utilities/QuotationAliasUtils.cs -------------------------------------------------------------------------------- /Revolt.Net.Commands/Utilities/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Commands/Utilities/ReflectionUtils.cs -------------------------------------------------------------------------------- /Revolt.Net.Tests/Rest/Bots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Tests/Rest/Bots.cs -------------------------------------------------------------------------------- /Revolt.Net.Tests/Rest/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Tests/Rest/Info.cs -------------------------------------------------------------------------------- /Revolt.Net.Tests/Rest/Invites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Tests/Rest/Invites.cs -------------------------------------------------------------------------------- /Revolt.Net.Tests/Revolt.Net.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Tests/Revolt.Net.Tests.csproj -------------------------------------------------------------------------------- /Revolt.Net.Tests/Static.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Tests/Static.cs -------------------------------------------------------------------------------- /Revolt.Net.Tests/Using.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net.Tests/Using.cs -------------------------------------------------------------------------------- /Revolt.Net/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Attachment.cs -------------------------------------------------------------------------------- /Revolt.Net/BaseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/BaseMessage.cs -------------------------------------------------------------------------------- /Revolt.Net/CacheExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/CacheExtensionMethods.cs -------------------------------------------------------------------------------- /Revolt.Net/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Category.cs -------------------------------------------------------------------------------- /Revolt.Net/Channels/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Channels/Channel.cs -------------------------------------------------------------------------------- /Revolt.Net/Channels/DirectMessageChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Channels/DirectMessageChannel.cs -------------------------------------------------------------------------------- /Revolt.Net/Channels/GroupChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Channels/GroupChannel.cs -------------------------------------------------------------------------------- /Revolt.Net/Channels/LastMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Channels/LastMessage.cs -------------------------------------------------------------------------------- /Revolt.Net/Channels/MessageChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Channels/MessageChannel.cs -------------------------------------------------------------------------------- /Revolt.Net/Channels/SavedMessagesChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Channels/SavedMessagesChannel.cs -------------------------------------------------------------------------------- /Revolt.Net/Channels/TextChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Channels/TextChannel.cs -------------------------------------------------------------------------------- /Revolt.Net/FillPartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/FillPartial.cs -------------------------------------------------------------------------------- /Revolt.Net/Internal/AsyncEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Internal/AsyncEvent.cs -------------------------------------------------------------------------------- /Revolt.Net/Internal/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Internal/CollectionExtensions.cs -------------------------------------------------------------------------------- /Revolt.Net/Internal/Preconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Internal/Preconditions.cs -------------------------------------------------------------------------------- /Revolt.Net/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Member.cs -------------------------------------------------------------------------------- /Revolt.Net/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Message.cs -------------------------------------------------------------------------------- /Revolt.Net/MessageEditData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/MessageEditData.cs -------------------------------------------------------------------------------- /Revolt.Net/MutualRelationships.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/MutualRelationships.cs -------------------------------------------------------------------------------- /Revolt.Net/ObjectMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/ObjectMessage.cs -------------------------------------------------------------------------------- /Revolt.Net/Permissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Permissions.cs -------------------------------------------------------------------------------- /Revolt.Net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/README.md -------------------------------------------------------------------------------- /Revolt.Net/Relation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Relation.cs -------------------------------------------------------------------------------- /Revolt.Net/Relationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Relationship.cs -------------------------------------------------------------------------------- /Revolt.Net/Revolt.Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Revolt.Net.csproj -------------------------------------------------------------------------------- /Revolt.Net/RevoltApiInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltApiInfo.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltClient.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltClient.Events.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltClient.Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltClient.Request.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltClient.WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltClient.WebSocket.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltClient.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltClientChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltClientChannels.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltClientSelf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltClientSelf.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltClientServers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltClientServers.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltClientUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltClientUsers.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltObject.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltRestClientBots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltRestClientBots.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltRestClientInvites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltRestClientInvites.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltRestClientServers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltRestClientServers.cs -------------------------------------------------------------------------------- /Revolt.Net/RevoltRestClientUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/RevoltRestClientUsers.cs -------------------------------------------------------------------------------- /Revolt.Net/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Role.cs -------------------------------------------------------------------------------- /Revolt.Net/SelfMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/SelfMessage.cs -------------------------------------------------------------------------------- /Revolt.Net/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Server.cs -------------------------------------------------------------------------------- /Revolt.Net/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/Session.cs -------------------------------------------------------------------------------- /Revolt.Net/SystemMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/SystemMessage.cs -------------------------------------------------------------------------------- /Revolt.Net/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Revolt.Net/User.cs -------------------------------------------------------------------------------- /RevoltBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/RevoltBot.sln -------------------------------------------------------------------------------- /RevoltBot.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/RevoltBot.sln.DotSettings.user -------------------------------------------------------------------------------- /Taco/Attributes/HiddenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Attributes/HiddenAttribute.cs -------------------------------------------------------------------------------- /Taco/Attributes/RequireDeveloperAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Attributes/RequireDeveloperAttribute.cs -------------------------------------------------------------------------------- /Taco/Attributes/RequireServerModeratorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Attributes/RequireServerModeratorAttribute.cs -------------------------------------------------------------------------------- /Taco/CommandHandling/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/CommandHandling/CommandHandler.cs -------------------------------------------------------------------------------- /Taco/CommandHandling/TacoModuleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/CommandHandling/TacoModuleBase.cs -------------------------------------------------------------------------------- /Taco/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Config.cs -------------------------------------------------------------------------------- /Taco/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/ExtensionMethods.cs -------------------------------------------------------------------------------- /Taco/ManPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/ManPages.cs -------------------------------------------------------------------------------- /Taco/Modules/AzurLaneCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/AzurLaneCommands.cs -------------------------------------------------------------------------------- /Taco/Modules/CoreCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/CoreCommands.cs -------------------------------------------------------------------------------- /Taco/Modules/DevCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/DevCommands.cs -------------------------------------------------------------------------------- /Taco/Modules/FunCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/FunCommands.cs -------------------------------------------------------------------------------- /Taco/Modules/ImageGenCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/ImageGenCommands.cs -------------------------------------------------------------------------------- /Taco/Modules/ModerationCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/ModerationCommands.cs -------------------------------------------------------------------------------- /Taco/Modules/SnipeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/SnipeModule.cs -------------------------------------------------------------------------------- /Taco/Modules/TestCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/TestCommands.cs -------------------------------------------------------------------------------- /Taco/Modules/UtilityCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Modules/UtilityCommands.cs -------------------------------------------------------------------------------- /Taco/Mongo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Mongo.cs -------------------------------------------------------------------------------- /Taco/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Program.cs -------------------------------------------------------------------------------- /Taco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/README.md -------------------------------------------------------------------------------- /Taco/Resources/02ily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/02ily.png -------------------------------------------------------------------------------- /Taco/Resources/EpicUberFruit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/EpicUberFruit.gif -------------------------------------------------------------------------------- /Taco/Resources/Fuck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/Fuck.png -------------------------------------------------------------------------------- /Taco/Resources/JesusCarry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/JesusCarry.png -------------------------------------------------------------------------------- /Taco/Resources/KillList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/KillList.png -------------------------------------------------------------------------------- /Taco/Resources/LinuxDistros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/LinuxDistros.json -------------------------------------------------------------------------------- /Taco/Resources/LovedList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/LovedList.png -------------------------------------------------------------------------------- /Taco/Resources/RetardFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/RetardFound.png -------------------------------------------------------------------------------- /Taco/Resources/UberFruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/UberFruit.png -------------------------------------------------------------------------------- /Taco/Resources/flooshed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Resources/flooshed.png -------------------------------------------------------------------------------- /Taco/ServerLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/ServerLogging.cs -------------------------------------------------------------------------------- /Taco/Taco.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Taco.csproj -------------------------------------------------------------------------------- /Taco/TacoCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/TacoCommandContext.cs -------------------------------------------------------------------------------- /Taco/Util/ArchReposApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Util/ArchReposApi.cs -------------------------------------------------------------------------------- /Taco/Util/EtherScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Util/EtherScan.cs -------------------------------------------------------------------------------- /Taco/Util/HelpUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Util/HelpUtil.cs -------------------------------------------------------------------------------- /Taco/Util/ImageGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Util/ImageGen.cs -------------------------------------------------------------------------------- /Taco/Util/IpApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Util/IpApi.cs -------------------------------------------------------------------------------- /Taco/Util/LinuxDistro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Util/LinuxDistro.cs -------------------------------------------------------------------------------- /Taco/Util/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/Taco/Util/Util.cs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/config-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/config-commands.yaml -------------------------------------------------------------------------------- /docs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/config.yaml -------------------------------------------------------------------------------- /docs/docfx-commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/docfx-commands.json -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/docs/root/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/docs/root/index.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/generate.sh -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jan0660/Taco/HEAD/docs/yarn.lock --------------------------------------------------------------------------------