summaryrefslogtreecommitdiffstats
path: root/libraries/logic/net/URLConstants.cpp
blob: bd476b2cb13a390292d5b3fe9e4c9d5e029ab735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "URLConstants.h"

namespace URLConstants {

QString getLegacyJarUrl(QString version)
{
	return "http://" + AWS_DOWNLOAD_VERSIONS + getJarPath(version);
}

QString getJarPath(QString version)
{
	return version + "/" + version + ".jar";
}


}