start_service.py 745 B

123456789101112131415161718192021
  1. """
  2. Copyright (c) Contributors to the Open 3D Engine Project.
  3. For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. SPDX-License-Identifier: Apache-2.0 OR MIT
  5. """
  6. # -------------------------------------------------------------------------
  7. """DCCsi Tool and Application service launcher"""
  8. def start_service():
  9. """Not Implemented"""
  10. print('DCCsi.Tools.DCC.start_service() not implemented')
  11. return None
  12. ###########################################################################
  13. # Main Code Block, runs this script as main (testing)
  14. # -------------------------------------------------------------------------
  15. if __name__ == '__main__':
  16. """Run this file as main"""
  17. start_service()