1 2 3 4 5 6 7 8
import * as rest from './rest.js'; export async function set(name, birthday) { await rest.post('/api/profile/set', { full_name: name, birthday: birthday, }); }