cargo-fix

This commit is contained in:
c0repwn3r 2023-03-02 09:40:24 -05:00
parent 677f60fc2b
commit cde5b73907
Signed by: core
GPG Key ID: FDBF740DADDCEECF
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>. // along with this program. If not, see <https://www.gnu.org/licenses/>.
use std::error::Error; use std::error::Error;
use log::info;
use rocket::form::validate::Contains; use rocket::form::validate::Contains;
use sqlx::PgPool; use sqlx::PgPool;
use trifid_pki::ca::NebulaCAPool; use trifid_pki::ca::NebulaCAPool;

View File

@ -14,12 +14,12 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>. // along with this program. If not, see <https://www.gnu.org/licenses/>.
use ipnet::Ipv4Net;
use rocket::{post, options, get, State}; use rocket::{options, get, State};
use rocket::http::{ContentType, Status}; use rocket::http::{ContentType, Status};
use rocket::serde::json::Json; use rocket::serde::json::Json;
use sqlx::PgPool; use sqlx::PgPool;
use crate::config::TFConfig;
use serde::{Serialize, Deserialize}; use serde::{Serialize, Deserialize};
use crate::auth::TOTPAuthenticatedUserInfo; use crate::auth::TOTPAuthenticatedUserInfo;
use crate::org::{get_associated_orgs, get_org_ca_pool}; use crate::org::{get_associated_orgs, get_org_ca_pool};