Skip to content
Closed
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
build
profiles
backend/cmd/cmd
packet-sender/packet_sender
.ropeproject

# MacOS Files
Expand All @@ -17,8 +18,5 @@ CLAUDE*

*.exe

# Rust build artifacts
packet-sender/target/

# VS Code Workspace
*.code-workspace
2 changes: 1 addition & 1 deletion backend/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"os/signal"

adj_module "github.com/HyperloopUPV-H8/h9-backend/internal/adj"
adj_module "github.com/HyperloopUPV-H8/h9-backend/pkg/adj"
"github.com/HyperloopUPV-H8/h9-backend/internal/config"
"github.com/HyperloopUPV-H8/h9-backend/internal/pod_data"
"github.com/HyperloopUPV-H8/h9-backend/internal/update_factory"
Expand Down
2 changes: 1 addition & 1 deletion backend/cmd/orchestrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"runtime/pprof"
"strings"

adj_module "github.com/HyperloopUPV-H8/h9-backend/internal/adj"
adj_module "github.com/HyperloopUPV-H8/h9-backend/pkg/adj"
"github.com/HyperloopUPV-H8/h9-backend/internal/config"
"github.com/HyperloopUPV-H8/h9-backend/internal/pod_data"
"github.com/HyperloopUPV-H8/h9-backend/pkg/abstraction"
Expand Down
2 changes: 1 addition & 1 deletion backend/cmd/setup_transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net"
"time"

adj_module "github.com/HyperloopUPV-H8/h9-backend/internal/adj"
adj_module "github.com/HyperloopUPV-H8/h9-backend/pkg/adj"
"github.com/HyperloopUPV-H8/h9-backend/internal/common"
"github.com/HyperloopUPV-H8/h9-backend/internal/config"
"github.com/HyperloopUPV-H8/h9-backend/internal/pod_data"
Expand Down
2 changes: 1 addition & 1 deletion backend/cmd/setup_vehicle.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
h "github.com/HyperloopUPV-H8/h9-backend/pkg/http"
"github.com/HyperloopUPV-H8/h9-backend/pkg/websocket"

adj_module "github.com/HyperloopUPV-H8/h9-backend/internal/adj"
adj_module "github.com/HyperloopUPV-H8/h9-backend/pkg/adj"
"github.com/HyperloopUPV-H8/h9-backend/internal/common"
"github.com/HyperloopUPV-H8/h9-backend/internal/config"
"github.com/HyperloopUPV-H8/h9-backend/internal/pod_data"
Expand Down
2 changes: 1 addition & 1 deletion backend/internal/pod_data/measurement.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/HyperloopUPV-H8/h9-backend/internal/adj"
"github.com/HyperloopUPV-H8/h9-backend/pkg/adj"
"github.com/HyperloopUPV-H8/h9-backend/internal/common"
"github.com/HyperloopUPV-H8/h9-backend/internal/utils"
)
Expand Down
2 changes: 1 addition & 1 deletion backend/internal/pod_data/pod_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package pod_data
import (
"github.com/HyperloopUPV-H8/h9-backend/internal/utils"

"github.com/HyperloopUPV-H8/h9-backend/internal/adj"
"github.com/HyperloopUPV-H8/h9-backend/pkg/adj"
"github.com/HyperloopUPV-H8/h9-backend/internal/common"
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions go.work
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ go 1.23.1

use (
./backend
./packet-sender
./updater
)
17 changes: 0 additions & 17 deletions packet-sender/.gitignore

This file was deleted.

Loading