YHNJXHEFIHKZUGR22VCEZQLWR6AADOMXN4GURZXZRXOTWEOZO7AAC
pub fn whoami() {
pub fn (mut self MatrixActor) whoami() ?string {
mut config := http.FetchConfig {
method: http.Method.get
}
token := "x"
config.headers['Authorization'] = "Bearer $token"
println(config)
resp := http.fetch("https://$self.host/_matrix/client/r0/account/whoami", config) ?
println(resp)