()
| 472 | } |
| 473 | |
| 474 | export async function getProfile(): Promise<Profile> { |
| 475 | const profile = await invokeTauri<RawProfile>("get_profile"); |
| 476 | return fromRawProfile(profile); |
| 477 | } |
| 478 | |
| 479 | export async function updateProfile( |
| 480 | input: UpdateProfileInput, |
no test coverage detected