Shay The Squiddog

He/Him

@SuppressWarnings("unused")
public enum socials {
    // Also known as "X" or so I'm told...
    TWITTER("twitter.com/ShayTheSquog"),
    BLUESKY("ShayTheSquog.bsky.social"),
    TUMBLR("tumblr.com/shaythesquog"),
    DISCORD("shaythesquog"),
    TWITCH("twitch.tv/ShayTheSquog"),
    GITHUB("github.com/ShayTheSquiddog");

    public final String link;

    socials(String link) {
        this.link = link;
    }
}