mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-09 06:37:57 -05:00
12 lines
305 B
Python
12 lines
305 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "reboot",
|
||
|
srcs = [
|
||
|
"reboot_cross.go",
|
||
|
"reboot_linux.go",
|
||
|
],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/bootstrapper/internal/reboot",
|
||
|
visibility = ["//bootstrapper:__subpackages__"],
|
||
|
)
|