import * as rest from './rest.js'; export async function set(name, birthday) { await rest.post('/api/profile/set', { full_name: name, birthday: birthday, }); }