Run rustfmt

This commit is contained in:
Koen Bolhuis 2021-01-20 01:13:13 +01:00
parent c76d0d9d89
commit 2ff97ce9d2
2 changed files with 2 additions and 2 deletions

View File

@ -3,10 +3,10 @@ use serde::Serialize;
use ureq::Agent;
use crate::Error;
use super::endpoint::Endpoint;
use super::request::*;
use super::response::*;
use crate::Error;
const API_ROOT_URL: &str = "https://api.listenbrainz.org/1/";

View File

@ -2,8 +2,8 @@ use std::convert::TryInto;
use std::time::{SystemTime, UNIX_EPOCH};
use crate::error::Error;
use crate::raw::Client;
use crate::raw::request::{ListenType, Payload, SubmitListens, TrackMetadata};
use crate::raw::Client;
/// Contains a ListenBrainz token and the associated username
/// for authentication purposes.