From 298646096a90d43349a16bfcaa75739cd32f3e77 Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Sat, 20 Jan 2024 21:30:09 -0800 Subject: [PATCH] update readme --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index be79585..70d8314 100644 --- a/README.md +++ b/README.md @@ -1 +1,16 @@ -# discord-music-bot \ No newline at end of file +# MusicBot for Discord + +This is a basic Discord bot that will use the Youtube APi to find videos based on a song title and artist name. + +Note: You need to create a Token class with your own Discord Token and Youtube API Key. + +Sample: + +```java + +public class Token { + public static final String TOKEN = "discordToken"; + public static final String YOUTUBE_API_KEY = "YoutubeApiKey"; +} + +``` \ No newline at end of file