diff --git a/services/api/src/html/index.html b/services/api/src/html/index.html index c664406..ee8fbed 100644 --- a/services/api/src/html/index.html +++ b/services/api/src/html/index.html @@ -52,4 +52,9 @@ responsibility for your use of this data... or our weapons. :)
For help, please contact us in #api-dev on the PlanetSide 2 Discord.
-[github]
+ diff --git a/services/api/src/main.rs b/services/api/src/main.rs index 064ab93..625b4d2 100644 --- a/services/api/src/main.rs +++ b/services/api/src/main.rs @@ -17,7 +17,7 @@ use axum::{ Extension, Json, Router, }; use std::net::SocketAddr; -use tower_http::cors::{AllowHeaders, Any, CorsLayer}; +use tower_http::cors::{Any, CorsLayer}; #[macro_use] extern crate serde_json; diff --git a/services/websocket/src/main.rs b/services/websocket/src/main.rs index 06e355f..1ce17a0 100644 --- a/services/websocket/src/main.rs +++ b/services/websocket/src/main.rs @@ -4,10 +4,7 @@ use lazy_static::lazy_static; use redis::Commands; use serde::Deserialize; use serde_json::json; -use std::{ - env, - time::{Duration, SystemTime}, -}; +use std::{env, time::SystemTime}; use tokio_tungstenite::{connect_async, tungstenite::Message}; mod translators;