#!/usr/bin/env python3
import time

def main() -> None:
    # Open /opt/foo - which is provided by a layout with bind-file and wait
    # forever.
    foo = open("/opt/foo")
    while True:
        time.sleep(1)


if __name__ == "__main__":
	main()
