1# buildifier: disable=module-docstring 2MyPoorlyDocumentedInfo = provider() 3 4MyFooInfo = provider( 5 doc = "Stores information about a foo.", 6 fields = ["bar", "baz"], 7) 8 9MyVeryDocumentedInfo = provider( 10 doc = """ 11A provider with some really neat documentation. 12Look on my works, ye mighty, and despair! 13""", 14 fields = { 15 "favorite_food": "A string representing my favorite food", 16 "favorite_color": "A string representing my favorite color", 17 }, 18) 19