From: Debayan Sutradhar Date: Thu, 03 Jun 2021 21:26:13 +0530 Subject: Added ContactLinks --- Added ContactLinks --- --- /dev/null +++ b/src/main/java/com/stream_pi/util/contactlinks/ContactLinks.java @@ -0,0 +1,29 @@ +package com.stream_pi.util.contactlinks; + +public class ContactLinks +{ + public static String getGitHub() + { + return "https://github.com/Stream-Pi"; + } + + public static String getDiscord() + { + return "https://discord.gg/BExqGmk"; + } + + public static String getWebsite() + { + return "https://stream-pi.com"; + } + + public static String getTwitter() + { + return "https://twitter.com/Stream_Pi"; + } + + public static String getMatrix() + { + return "https://matrix.to/#/!hTwUYZonUXThjkMhCD:matrix.org?via=matrix.org"; + } +}