app info() Get path of potential nfs drives for your lab Source code in hpcman/lab/app.py 25 26 27 28 29 30@app.command() def info() -> None: """ Get path of potential nfs drives for your lab """ raise CommandNotImplemented("lab module has not been implemented.") lab() Get information about lab configuration Source code in hpcman/lab/app.py 10 11 12 13 14@app.callback() def lab() -> None: """ Get information about lab configuration """ manager() Get lab manager information Source code in hpcman/lab/app.py 17 18 19 20 21 22@app.command() def manager() -> None: """ Get lab manager information """ raise CommandNotImplemented("lab module has not been implemented.")