mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-12-14 15:40:45 -05:00
Move workspace path functions to sub-package of cmd
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
99c579b45a
commit
89b342900f
21 changed files with 213 additions and 189 deletions
16
cli/internal/cmd/pathprefix/BUILD.bazel
Normal file
16
cli/internal/cmd/pathprefix/BUILD.bazel
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "workspace",
|
||||
srcs = ["workspace.go"],
|
||||
importpath = "github.com/edgelesssys/constellation/v2/cli/internal/cmd/workspace",
|
||||
visibility = ["//cli:__subpackages__"],
|
||||
deps = ["//internal/constants"],
|
||||
)
|
||||
|
||||
go_library(
|
||||
name = "pathprefix",
|
||||
srcs = ["pathprefix.go"],
|
||||
importpath = "github.com/edgelesssys/constellation/v2/cli/internal/cmd/pathprefix",
|
||||
visibility = ["//cli:__subpackages__"],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue