You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /*
- * This project, is at this moment used for testing and debugging the new and experimental Slash Commands.
- * After all testing has been done, and the project is ready to be integrated into the main Discord.Net ecosystem
- * this project should be re-made into one that could be used as an example usage of the new Slash Command Service.
- */
- using System;
-
- namespace SlashCommandsExample
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Hello World!");
- }
- }
- }
|