Add dependencies

This commit is contained in:
bitfl0wer 2023-04-25 17:21:27 +02:00
parent b269574670
commit 496305f091
2 changed files with 6 additions and 2 deletions

View File

@ -12,4 +12,6 @@ reqwest = "0.11.16"
url = "2.3.1"
chrono = "0.4.24"
regex = "1.7.3"
custom_error = "1.9.2"
custom_error = "1.9.2"
native-tls = "0.2.11"
tokio-tungstenite = {version = "0.18.0", features = ["native-tls"]}

View File

@ -1,2 +1,4 @@
#[derive(Debug)]
pub struct Gateway {}
pub struct Gateway {
url: String,
}