load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "systemdconfig", srcs = [ "errors.go", "field.go", "section.go", "systemdconfig.go", ], importpath = "edge-infra.dev/pkg/sds/lib/systemd/systemdconfig", visibility = ["//visibility:public"], ) go_test( name = "systemdconfig_test", srcs = ["systemdconfig_test.go"], embed = [":systemdconfig"], deps = ["@com_github_stretchr_testify//assert"], )