//! This module contains functions for getting the current user.
usecrate::Rujira;usesuper::{Rq, Rs,REST_BASE};/// Get the current user
pubfnget(bot: Rujira)-> Rq{Rq::new(bot).uri(&format!("{}/myself",REST_BASE))}/// Get the name of the current user as a string
pubfnname(rs: Rs)-> String{
rs.data["displayName"].to_string()}