export async function Sleep(time: number) { return new Promise((res) => { setTimeout(res, time) }) }