aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/repository/vcs/vcs_driver_interface.rs')
-rw-r--r--crates/shirabe/src/repository/vcs/vcs_driver_interface.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs b/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs
index 5d2be04..fb10d0f 100644
--- a/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs
+++ b/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs
@@ -29,9 +29,9 @@ pub trait VcsDriverInterface: std::fmt::Debug {
fn get_tags(&mut self) -> anyhow::Result<IndexMap<String, String>>;
- fn get_dist(&self, identifier: &str) -> anyhow::Result<Option<IndexMap<String, String>>>;
+ fn get_dist(&self, identifier: &str) -> Option<IndexMap<String, String>>;
- fn get_source(&self, identifier: &str) -> anyhow::Result<IndexMap<String, String>>;
+ fn get_source(&self, identifier: &str) -> IndexMap<String, String>;
fn get_url(&self) -> String;