This commit is contained in:
kristof 2025-04-02 08:38:40 +02:00
parent 1920e8ae79
commit d79ea2ef4f
5 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ use std::collections::HashMap;
use redis::Cmd;
use serde::{Deserialize, Serialize};
use crate::env;
use crate::redisclient;
use crate::git::git::parse_git_url;
// Define a custom error type for GitExecutor operations
@ -127,7 +127,7 @@ impl GitExecutor {
cmd.arg("GET").arg("herocontext:git");
// Execute the command
let result: redis::RedisResult<String> = env::execute(&mut cmd);
let result: redis::RedisResult<String> = redisclient::execute(&mut cmd);
match result {
Ok(json_str) => {

View File

@ -39,7 +39,7 @@ pub type Result<T> = std::result::Result<T, Error>;
pub mod process;
pub mod git;
pub mod os;
pub mod env;
pub mod redisclient;
pub mod text;
// Version information