Add PartialEq and Eq derives

This commit is contained in:
bitfl0wer 2023-04-16 22:16:39 +02:00
parent 4b129ee6a3
commit d4bf540203
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
mod api;
mod client;
mod gateway;
mod instance;
mod limit;
mod voice;
use url::{ParseError, Url};
#[derive(Clone, Default, Debug)]
#[derive(Clone, Default, Debug, PartialEq, Eq)]
/// A URLBundle is a struct which bundles together the API-, Gateway- and CDN-URLs of a Spacebar
/// instance.