summaryrefslogtreecommitdiffstats
path: root/src/project.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-11-27 19:42:25 -0600
committerToby Vincent <tobyv13@gmail.com>2022-11-27 19:43:01 -0600
commitc664b588518e12de901bfe4a8ba2242893e4ff3d (patch)
tree02e1e19d6c2e7b46481b4722e38bcb4a96c115db /src/project.rs
parentc7319caf38ff22e67f6fb625411ed554cf3b1f92 (diff)
refactor: add type alias for boxed project
Diffstat (limited to 'src/project.rs')
-rw-r--r--src/project.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/project.rs b/src/project.rs
index b13d4a7..5f1edc5 100644
--- a/src/project.rs
+++ b/src/project.rs
@@ -11,6 +11,8 @@ mod error;
mod git;
mod path;
+pub type ProjectItem = Box<dyn Project<Error = Error>>;
+
pub trait Timestamp {
type Error;