blob: 91d7b79eb136f5de22f1ae6a6ec71e7ae6cba9b0 [file] [log] [blame]
#!/usr/bin/env python3.8
# Copyright 2021 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.
import lib
import sys
def main():
lib.f()
if __name__ == "__main__":
sys.exit(main())