/**
 * 将用户踢出房间
 * @param username 用户名
 * @returns {string}
 */
export default (username: string) =>
{
  return `!#["${username}"]`;
};
