mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 01:28:03 +01:00
16 lines
308 B
Java
16 lines
308 B
Java
/*
|
|
* Copyright 2013-2021 Signal Messenger, LLC
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package org.whispersystems.textsecuregcm;
|
|
|
|
public class WhisperServerVersion {
|
|
|
|
private static final String VERSION = "${project.version}";
|
|
|
|
public static String getServerVersion() {
|
|
return VERSION;
|
|
}
|
|
}
|