Move Endpoint to raw module

This commit is contained in:
Koen Bolhuis 2021-01-20 00:23:35 +01:00
parent 7f07ecfb32
commit 9ed9ebfe0f
4 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,5 @@
//! API bindings for ListenBrainz.
mod endpoint;
mod error;
pub mod raw;
mod wrapper;

View File

@ -3,8 +3,8 @@ use serde::Serialize;
use ureq::Agent;
use crate::endpoint::Endpoint;
use crate::Error;
use super::endpoint::Endpoint;
use super::request::*;
use super::response::*;

View File

@ -5,6 +5,7 @@
//! for [request] and [response] data.
mod client;
mod endpoint;
pub mod request;
pub mod response;