Skip to content

Commit ab9e1c0

Browse files
committed
reorganized directory structure and imports
1 parent fde6198 commit ab9e1c0

18 files changed

Lines changed: 31 additions & 20 deletions

File tree

src/core/project_intializer/ast_parser/ast_parser.rs renamed to src/core/ast_parser/ast_parser.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ use std::io;
77
use tree_sitter::{Language, QueryCursor};
88
use tree_sitter_python;
99

10-
use crate::core::project_intializer::ast_parser::import_classifier::ImportClassifier;
11-
use crate::core::project_intializer::ast_parser::query::ParseQuery;
12-
use crate::core::project_intializer::ast_parser::syntax_tree::SyntaxTree;
13-
use crate::core::project_intializer::ast_parser::tree_analyzer::TreeAnalyzer;
10+
use crate::core::ast_parser::import_classifier::ImportClassifier;
11+
use crate::core::ast_parser::query::ParseQuery;
12+
use crate::core::ast_parser::syntax_tree::SyntaxTree;
13+
use crate::core::ast_parser::tree_analyzer::TreeAnalyzer;
1414

1515
pub struct AstParser {
1616
file_data: Mutex<HashMap<String, HashMap<String, Vec<String>>>>,
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/core/project_intializer/config_creator.rs renamed to src/core/config_creator/config_creator.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use std::{fs::{self, OpenOptions}, io::{self, Write}};
1+
use std::{fs::{self, OpenOptions}};
2+
use std::io::{self, Write};
23
use std::path::Path;
34

45
pub struct ConfigCreator {}

src/core/config_creator/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod config_creator;
File renamed without changes.

0 commit comments

Comments
 (0)