Skip to content

Commit ee649c6

Browse files
authored
move providers and engines to designated folders (#6)
Signed-off-by: Dmitry Shmulevich <[email protected]>
1 parent 0ce010a commit ee649c6

21 files changed

+14
-14
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pkg/factory/engine.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
"net/http"
2323

2424
"github.com/NVIDIA/topograph/pkg/common"
25-
"github.com/NVIDIA/topograph/pkg/k8s"
26-
"github.com/NVIDIA/topograph/pkg/slurm"
25+
"github.com/NVIDIA/topograph/pkg/engines/k8s"
26+
"github.com/NVIDIA/topograph/pkg/engines/slurm"
2727
)
2828

2929
func GetEngine(engine string) (common.Engine, *common.HTTPError) {

pkg/factory/provider.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ import (
2121
"fmt"
2222
"net/http"
2323

24-
"github.com/NVIDIA/topograph/pkg/aws"
2524
"github.com/NVIDIA/topograph/pkg/common"
26-
"github.com/NVIDIA/topograph/pkg/cw"
27-
"github.com/NVIDIA/topograph/pkg/gcp"
28-
"github.com/NVIDIA/topograph/pkg/oci"
25+
"github.com/NVIDIA/topograph/pkg/providers/aws"
26+
"github.com/NVIDIA/topograph/pkg/providers/cw"
27+
"github.com/NVIDIA/topograph/pkg/providers/gcp"
28+
"github.com/NVIDIA/topograph/pkg/providers/oci"
2929
"github.com/NVIDIA/topograph/pkg/translate"
3030
)
3131

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)