summaryrefslogtreecommitdiffstats
path: root/api/logic/net/URLConstants.cpp
blob: 9a4d920b99407a2ea864047ffb6ecca0b4d34051 (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 AWS_DOWNLOAD_VERSIONS + getJarPath(version);
}

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


}