From 2d7a640935e33d560834469835a189caf3960a2c Mon Sep 17 00:00:00 2001 From: Kalila L Date: Thu, 27 Aug 2020 05:27:47 -0400 Subject: [PATCH] Create networkingConstants.js --- scripts/system/libraries/networkingConstants.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 scripts/system/libraries/networkingConstants.js diff --git a/scripts/system/libraries/networkingConstants.js b/scripts/system/libraries/networkingConstants.js new file mode 100644 index 0000000000..95e91c7f85 --- /dev/null +++ b/scripts/system/libraries/networkingConstants.js @@ -0,0 +1,14 @@ +// networkingConstants.js +// +// Created by Kalila L. on 8/27/20 +// Copyright 2020 Vircadia contributors. +// +// Distributed under the Apache License, Version 2.0. +// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html + +// Interface Metadata Source +var interfaceMetadataSource = "https://cdn.vircadia.com/dist/launcher/vircadiaMeta.json"; + +module.exports = { + interfaceMetadataSource: interfaceMetadataSource +}