Advertisement
Guest User

main.java

a guest
Oct 18th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package me.music.bot;
  2.  
  3. import net.dv8tion.jda.api.JDABuilder;
  4. import net.dv8tion.jda.api.entities.Activity;
  5.  
  6. public class main {
  7.     public static void main(String[] args) throws Exception {
  8.         new JDABuilder(" ")
  9.                 .addEventListeners(new playCommand())
  10.                 .setActivity(Activity.watching(";pomoc"))
  11.                 .build();
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement