cargo fix on server

This commit is contained in:
Priec
2025-10-26 16:07:19 +01:00
parent 492f1f1e55
commit 11185282c4
15 changed files with 7 additions and 20 deletions

View File

@@ -1,6 +1,5 @@
// src/server/services/table_validation_service.rs
use tonic::transport::Server;
use sqlx::PgPool;
use common::proto::komp_ac::table_validation::table_validation_service_server::TableValidationServiceServer;

View File

@@ -2,7 +2,6 @@
use tonic::Status;
use sqlx::{PgPool, Transaction, Postgres};
use serde_json::json;
use common::proto::komp_ac::table_definition::{PostTableDefinitionRequest, TableDefinitionResponse};
use common::proto::komp_ac::table_definition::ColumnDefinition;
use crate::table_definition::models::map_field_type;

View File

@@ -3,7 +3,7 @@
use std::collections::HashMap;
use tonic::Status;
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
use serde_json::Value;
/// Represents the state of a node during dependency graph traversal.
#[derive(Clone, Copy, PartialEq)]