setting up for config-delivery mod dev

pull/3/head
prplV 2025-01-17 14:02:59 +03:00
parent de727de200
commit 124fbbeb7d
5 changed files with 11 additions and 0 deletions

1
.env Normal file
View File

@ -0,0 +1 @@
CONFIG_SERVER_CREDS = "ws://127.0.0.1:8080"

View File

@ -4,3 +4,10 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
dotenv = "0.15.0"
rand = "0.8.5"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
tokio-websockets = { version = "^0.11.0", features = ["client", "openssl", "rand"] }
integr-structs = {path = "../integr-structs"}

View File

View File

@ -1,3 +1,6 @@
mod delivery;
mod integration;
fn main() { fn main() {
println!("Hello, world!"); println!("Hello, world!");
} }