load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "core", srcs = [ "app.go", "gpio.go", "persist.go", ], importpath = "github.com/example/project/astoria-hc/internal/core", visibility = ["//astoria-hc:__subpackages__"], deps = [ "//astoria-hc/vendor/github.com/brutella/hc/accessory", "//astoria-hc/vendor/github.com/stianeikeland/go-rpio", "//astoria-hc/vendor/github.com/vemo-france/max31865", "@com_github_bwdezend_astoria_hc//internal/telemetry:go_default_library", ], )