Update git remote URL from git.ourworld.tf to git.threefold.info

This commit is contained in:
despiegk 2025-06-15 16:21:03 +02:00
parent 0c425470a5
commit 7d05567ad2
13 changed files with 13 additions and 13 deletions

View File

@ -8,7 +8,7 @@
"--token", "5bd13c898368a2edbfcef43f898a34857b51b37a"
],
"env": {
"GITEA_HOST": "https://git.ourworld.tf/",
"GITEA_HOST": "https://git.threefold.info/",
"GITEA_ACCESS_TOKEN": "5bd13c898368a2edbfcef43f898a34857b51b37a"
}
}

View File

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
authors = ["PlanetFirst <info@incubaid.com>"]
description = "System Abstraction Layer - A library for easy interaction with operating system features"
repository = "https://git.ourworld.tf/herocode/sal"
repository = "https://git.threefold.info/herocode/sal"
license = "Apache-2.0"
keywords = ["system", "os", "abstraction", "platform", "filesystem"]
categories = ["os", "filesystem", "api-bindings"]

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/examples/container_example.rs
// File: /root/code/git.threefold.info/herocode/sal/examples/container_example.rs
use std::error::Error;
use sal::virt::nerdctl::Container;

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/cmd.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/cmd.rs
// Basic nerdctl operations for container management
use std::process::Command;

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container.rs
use std::collections::HashMap;
use crate::virt::nerdctl::{execute_nerdctl_command, NerdctlError};

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_builder.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_builder.rs
use std::collections::HashMap;
use crate::virt::nerdctl::{execute_nerdctl_command, NerdctlError};

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_functions.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_functions.rs
use crate::process::CommandResult;
use crate::virt::nerdctl::{execute_nerdctl_command, NerdctlError};

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_operations.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_operations.rs
use crate::process::CommandResult;
use crate::virt::nerdctl::{execute_nerdctl_command, NerdctlError};

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_test.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_test.rs
#[cfg(test)]
mod tests {

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/container_types.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/container_types.rs
use std::collections::HashMap;

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/health_check.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/health_check.rs
use super::container_types::HealthCheck;

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/health_check_script.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/health_check_script.rs
use std::fs;
use std::path::Path;

View File

@ -1,4 +1,4 @@
// File: /root/code/git.ourworld.tf/herocode/sal/src/virt/nerdctl/images.rs
// File: /root/code/git.threefold.info/herocode/sal/src/virt/nerdctl/images.rs
use crate::virt::nerdctl::execute_nerdctl_command;
use crate::process::CommandResult;