2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-28 21:33:48 +00:00
bazel-lib/lib/base64.bzl

12 lines
253 B
Python
Raw Permalink Normal View History

"""Utility functions for encoding and decoding strings with base64.
See https://en.wikipedia.org/wiki/Base64.
"""
load("//lib/private:base64.bzl", _decode = "decode", _encode = "encode")
base64 = struct(
decode = _decode,
encode = _encode,
)