import {createNamespace, getNamespace} from 'cls-hooked' const name = 'fudge-context' export const createContext = () => { return createNamespace(name) } export const getContext = () => { return getNamespace(name) }