RedisBungee/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/Constants.java

25 lines
720 B
Java
Raw Normal View History

2022-10-29 20:02:09 +00:00
/*
* Copyright (c) 2013-present RedisBungee contributors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*/
2023-03-23 11:42:59 +00:00
package com.imaginarycode.minecraft.redisbungee;
2023-03-23 11:42:59 +00:00
public class Constants {
public final static String VERSION = "@version@";
public final static String GIT_COMMIT = "@git_commit@";
2023-09-12 12:04:27 +00:00
public final static long BUILD_DATE = Long.parseLong("@build_date@");
2023-03-23 11:42:59 +00:00
public static String getGithubCommitLink() {
return "https://github.com/ProxioDev/RedisBungee/commit/" + GIT_COMMIT;
}
}