Files
redkale/src/org/redkale/util/Redkale.java
2017-12-16 09:40:30 +08:00

31 lines
585 B
Java

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkale.util;
/**
* <p>
* 详情见: https://redkale.org
*
* @author zhangjx
*/
public final class Redkale {
private Redkale() {
}
public static String getDotedVersion() {
return "1.8.8";
}
public static int getMajorVersion() {
return 1;
}
public static int getMinorVersion() {
return 8;
}
}