cc_library(
    name = "meta",
    hdrs = [
        "types.hpp",
    ],
    visibility = ["//visibility:public"],
)

cc_test(
    name = "types_tests",
    srcs = [
        "types_tests.cpp",
    ],
    deps = [
        ":meta",
    ],
)