Add dependencies

This commit is contained in:
bitfl0wer 2023-04-25 17:21:27 +02:00
parent 3932df005b
commit 87d9d14047
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
2 changed files with 6 additions and 2 deletions

View File

@ -13,3 +13,5 @@ url = "2.3.1"
chrono = "0.4.24"
regex = "1.7.3"
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,
}