| # Copyright 2023 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| def print_hello(ctx): | |
| """Prints hello. | |
| Args: | |
| ctx: A ctx instance. | |
| """ | |
| ctx.emit.finding(level="notice", message="Hello, world!") | |
| shac.register_check(print_hello) | |