Skip to content

Commit

Permalink
Move mod get_knowledge to mod core
Browse files Browse the repository at this point in the history
  • Loading branch information
TaQuangKhoi committed Aug 16, 2024
1 parent 483aba2 commit 0030088
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions src/core/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/*! This file contains the core logic of the application. */

pub mod get_knowledge;
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ mod postgresql_queries;
mod app_fn_impl;
mod preparation;
mod sqlite_queries;
mod get_knowledge;
2 changes: 1 addition & 1 deletion src/working_database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::env::var;
use std::time::SystemTime;
use postgres::error::SqlState;
use rusqlite::{Connection};
use crate::get_knowledge::get_tables;
use crate::core::get_knowledge::get_tables;
use crate::database::connect;
use crate::postgresql_queries::query_get_self_references_tables;
use crate::table::{build_base_simple_table, create_tables_table, insert_new_table, Table};
Expand Down

0 comments on commit 0030088

Please sign in to comment.