Skip to content

Commit 6d777f2

Browse files
committed
project restructuring for query parsing
1 parent ff048fa commit 6d777f2

File tree

8 files changed

+4
-3
lines changed

8 files changed

+4
-3
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/databases/tables/table.rs renamed to src/data/databases/tables/table.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

19-
use crate::databases::tables::rows::row::Row;
19+
use crate::data::databases::tables::rows::row::Row;
2020

2121
#[derive(Debug)]
2222
pub struct Table {

src/data/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub(crate) mod databases;

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

19-
pub(crate) mod databases;
20-
use crate::databases::database::Database;
19+
pub(crate) mod data;
20+
use crate::data::databases::database::Database;
2121

2222
#[derive(Debug)]
2323
pub struct RNSQL {

0 commit comments

Comments
 (0)