// 通过用户名获取用户资料
export default function getUserProfileByName(username: string): string
{
  return `+-${username}`;
}
