1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "templates", 5 srcs = ["templates.go"], 6 embedsrcs = [ 7 "callback.html", 8 "print_barcode.html", 9 "client.html", 10 "view_barcode.html", 11 "choose_flow.html", 12 "customize_options.html", 13 "register_page.html", 14 ], 15 importpath = "edge-infra.dev/pkg/edge/iam/verify/templates", 16 visibility = ["//visibility:public"], 17)