Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
clean up and refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
connortsui20 committed Feb 12, 2024
1 parent 2c52021 commit e9befe3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion eggstrain/src/execution/operators/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use async_trait::async_trait;
use tokio::sync::broadcast::{Receiver, Sender};

pub mod forward_toy;
pub mod order_by;
pub mod project;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use super::*;
// use super::*;
use async_trait::async_trait;
use crate::execution::operators::*;
use tokio::sync::broadcast::{Receiver, Sender};

pub struct Forward {
pub prime: usize,
Expand Down
5 changes: 3 additions & 2 deletions eggstrain/src/execution/tests/toy_forward_example/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
pub mod bad_dag;
pub mod forward_toy;

use crate::execution::operators::forward_toy::Forward;
use crate::execution::operators::*;
use bad_dag::*;
use crate::execution::operators::*;
use forward_toy::Forward;
use std::{collections::VecDeque, sync::Arc};
use tokio::sync::broadcast::{channel, Receiver, Sender};

Expand Down

0 comments on commit e9befe3

Please sign in to comment.