1/** 2 * Copyright © 2023 650 Industries. 3 * 4 * This source code is licensed under the MIT license found in the 5 * LICENSE file in the root directory of this source tree. 6 */ 7import { createControlledEnvironment, getFiles, isEnabled } from './env'; 8 9const { get, load } = createControlledEnvironment(); 10 11export { getFiles, get, load, isEnabled }; 12