let currentSystem = undefined; export const openOP25 = async (systemName) => { currentSystem = systemName; } export const closeOP25 = async () => { currentSystem = undefined; } export const getCurrentSystem = async () => { return currentSystem; }