Skip to content

Commit 8e7d23f

Browse files
author
Dimuthu Wannipurage
committed
Updating repo to new name
1 parent 64607cb commit 8e7d23f

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Conduit — simple REST scaffold
1+
# LinkSpan — simple REST scaffold
22

33
This repository provides a small Go REST API skeleton exposing endpoints for:
44

@@ -10,7 +10,7 @@ This repository provides a small Go REST API skeleton exposing endpoints for:
1010
Run locally:
1111

1212
```bash
13-
cd /Users/dwannipurage3/code/conduit
13+
cd /Users/dwannipurage3/code/linkspan
1414
go test ./... # runs tests and fetches modules
1515
go run . # starts server on :8080
1616
```
@@ -31,4 +31,4 @@ Read a remote file (placeholder)
3131
```bash
3232
curl -s "http://localhost:8080/api/v1/fs/read?path=/tmp/test.txt" | jq
3333
```
34-
# conduit
34+
# linkspan

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cyber-shuttle/conduit
1+
module github.com/cyber-shuttle/linkspan
22

33
go 1.20
44

main.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ import (
1313
"syscall"
1414
"time"
1515

16-
pm "github.com/cyber-shuttle/conduit/internal/process"
17-
jupyter "github.com/cyber-shuttle/conduit/subsystems/jupyter"
18-
tunnel "github.com/cyber-shuttle/conduit/subsystems/tunnel"
19-
vfs "github.com/cyber-shuttle/conduit/subsystems/vfs"
20-
vscode "github.com/cyber-shuttle/conduit/subsystems/vscode"
16+
pm "github.com/cyber-shuttle/linkspan/internal/process"
17+
jupyter "github.com/cyber-shuttle/linkspan/subsystems/jupyter"
18+
tunnel "github.com/cyber-shuttle/linkspan/subsystems/tunnel"
19+
vfs "github.com/cyber-shuttle/linkspan/subsystems/vfs"
20+
vscode "github.com/cyber-shuttle/linkspan/subsystems/vscode"
2121
"github.com/gorilla/mux"
2222
)
2323

subsystems/env/venv/venv.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os/exec"
88
"path/filepath"
99

10-
cfg "github.com/cyber-shuttle/conduit/internal/config"
10+
cfg "github.com/cyber-shuttle/linkspan/internal/config"
1111
)
1212

1313
// CreateVirtualEnvironment creates a Python virtual environment at the specified path.

subsystems/env/venv/venv_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
func TestCreatePythonVirtualEnvironment(t *testing.T) {
88
// Test creating a venv in a temporary directory
9-
venvPath := "/tmp/test-venv-conduit"
9+
venvPath := "/tmp/test-venv-linkspan"
1010

1111
err := CreatePythonVirtualEnvironment(venvPath)
1212
if err != nil {

subsystems/jupyter/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/http"
66
"os"
77

8-
utils "github.com/cyber-shuttle/conduit/utils"
8+
utils "github.com/cyber-shuttle/linkspan/utils"
99
"github.com/gorilla/mux"
1010
)
1111

subsystems/jupyter/kernel.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"path/filepath"
99
"time"
1010

11-
pm "github.com/cyber-shuttle/conduit/internal/process"
12-
venv "github.com/cyber-shuttle/conduit/subsystems/env/venv"
13-
utils "github.com/cyber-shuttle/conduit/utils"
11+
pm "github.com/cyber-shuttle/linkspan/internal/process"
12+
venv "github.com/cyber-shuttle/linkspan/subsystems/env/venv"
13+
utils "github.com/cyber-shuttle/linkspan/utils"
1414
)
1515

1616
func startKernelWithVenv(kernelName string, venvPath string) (string, int, error) {

subsystems/jupyter/kernel_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"time"
77

8-
pm "github.com/cyber-shuttle/conduit/internal/process"
8+
pm "github.com/cyber-shuttle/linkspan/internal/process"
99
)
1010

1111
func TestStartKernelWithVenv(t *testing.T) {

subsystems/tunnel/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"net/http"
66

7-
utils "github.com/cyber-shuttle/conduit/utils"
7+
utils "github.com/cyber-shuttle/linkspan/utils"
88
)
99

1010
type Tunnel struct {

subsystems/tunnel/devtunnel.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"os/exec"
77
"time"
88

9-
pm "github.com/cyber-shuttle/conduit/internal/process"
10-
utils "github.com/cyber-shuttle/conduit/utils"
9+
pm "github.com/cyber-shuttle/linkspan/internal/process"
10+
utils "github.com/cyber-shuttle/linkspan/utils"
1111
)
1212

1313
func DevTunnelCreate(tunnelName string, expiration string, ports []int) (DevTunnelInfo, error) {

0 commit comments

Comments
 (0)