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

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


}