load("@rules_license//rules:license.bzl", "license") | |
package( | |
default_applicable_licenses = ["//:license"], | |
default_visibility = ["//visibility:private"], | |
) | |
license( | |
name = "license", | |
package_name = "crubit", | |
) | |
licenses(["notice"]) | |
exports_files(["LICENSE"]) |