let isCli = false;

export const getIsCli = () => isCli;

export const setIsCli = (cli: boolean) => {
	isCli = cli;
};
