import {getUserInfo} from './utils/utils'; export async function getUserName(): Promise { const info = await getUserInfo(); return info?.name ?? "No name found!"; }