javacord/src/test/java/Test.java

16 lines
503 B
Java

import xyz.etztech.embed.Author;
import xyz.etztech.embed.Embed;
import xyz.etztech.embed.Webhook;
public class Test {
public static void main(String[] args) {
Embed embed = Embed.builder()
.color(3306460)
.description("Etzelia found some \"diamond\" ore")
.author(new Author("Etzelia", "", "https://minotar.net/helm/Etzelia/100.png", ""));
Webhook webhook = new Webhook("@here", embed);
System.out.println(webhook);
}
}