1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/python
# Copyright Notice:
# Copyright 2016, 2020 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/blob/master/LICENSE.md
# redfishtool: redfishtool.py
#
# contents:
# -CLI wrapper: calls main() routine in ./redfishtool package
#
# Note: structure supports a future lib interface to the routines
# where the libWrapper is the interface
#
from redfishtoollib import main
import sys
if __name__ == "__main__":
main(sys.argv)
|