async function clickHandler(event) {
startLoading();
try {
const result = await loadSomething();
success(result);
} catch (error) {
fail(error)
} finally {
stopLoading();
}
}