account.ts 165 B

123456789
  1. import { handle } from '../index'
  2. const suffix = 'api'
  3. export const getUserInfoByUsername = () => handle({
  4. url: `/${suffix}/account/search`,
  5. method: 'get',
  6. })