Browse Source

Fix: formatting

pull/6388/head
hnolde 1 month ago
parent
commit
e5c0655c74
  1. 2
      src/api/admin.rs

2
src/api/admin.rs

@ -1,6 +1,5 @@
use data_encoding::BASE64URL_NOPAD; use data_encoding::BASE64URL_NOPAD;
use once_cell::sync::Lazy; use once_cell::sync::Lazy;
use url::Url;
use reqwest::Method; use reqwest::Method;
use serde::de::DeserializeOwned; use serde::de::DeserializeOwned;
use serde_json::Value; use serde_json::Value;
@ -8,6 +7,7 @@ use std::collections::HashMap;
use std::env; use std::env;
use std::sync::RwLock; use std::sync::RwLock;
use std::time::{SystemTime, UNIX_EPOCH}; use std::time::{SystemTime, UNIX_EPOCH};
use url::Url;
use rocket::serde::json::Json; use rocket::serde::json::Json;
use rocket::{ use rocket::{

Loading…
Cancel
Save