mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-13 01:44:22 -05:00
14 lines
365 B
Python
14 lines
365 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "cmd",
|
||
|
srcs = ["root.go"],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/hack/configapi/cmd",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//internal/api/configapi",
|
||
|
"//internal/staticupload",
|
||
|
"@com_github_spf13_cobra//:cobra",
|
||
|
],
|
||
|
)
|