add pstop link

This commit is contained in:
41666 2022-11-28 01:16:51 -05:00
parent 9e1e2ad1f5
commit 5c987caf38
3 changed files with 8 additions and 6 deletions

View file

@ -52,4 +52,9 @@
responsibility for your use of this data... or our weapons. :) responsibility for your use of this data... or our weapons. :)
</p> </p>
<p>For help, please contact us in #api-dev on the PlanetSide 2 Discord.</p> <p>For help, please contact us in #api-dev on the PlanetSide 2 Discord.</p>
<p>[<a href="https://github.com/genudine/saerro">github</a>]</p> <p>
[<a href="https://github.com/genudine/saerro">github</a>] [<a
href="https://pstop.harasse.rs"
>pstop</a
>]
</p>

View file

@ -17,7 +17,7 @@ use axum::{
Extension, Json, Router, Extension, Json, Router,
}; };
use std::net::SocketAddr; use std::net::SocketAddr;
use tower_http::cors::{AllowHeaders, Any, CorsLayer}; use tower_http::cors::{Any, CorsLayer};
#[macro_use] #[macro_use]
extern crate serde_json; extern crate serde_json;

View file

@ -4,10 +4,7 @@ use lazy_static::lazy_static;
use redis::Commands; use redis::Commands;
use serde::Deserialize; use serde::Deserialize;
use serde_json::json; use serde_json::json;
use std::{ use std::{env, time::SystemTime};
env,
time::{Duration, SystemTime},
};
use tokio_tungstenite::{connect_async, tungstenite::Message}; use tokio_tungstenite::{connect_async, tungstenite::Message};
mod translators; mod translators;