mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
36 lines
697 B
Python
36 lines
697 B
Python
# -*- coding: utf-8 -*-
|
|
"""Implementation of Pype commands."""
|
|
|
|
|
|
class PypeCommands:
|
|
"""Class implementing commands used by Pype.
|
|
|
|
Most of its methods are called by :mod:`cli` module.
|
|
"""
|
|
|
|
def launch_tray(self, debug):
|
|
pass
|
|
|
|
def launch_eventservercli(self, args):
|
|
pass
|
|
|
|
def publish(self, gui, paths):
|
|
pass
|
|
|
|
def texture_copy(self, project, asset, path):
|
|
pass
|
|
|
|
def run_pype_tests(self, keyword, id):
|
|
pass
|
|
|
|
def make_docs(self):
|
|
pass
|
|
|
|
def pype_setup_coverage(self):
|
|
pass
|
|
|
|
def run_application(self, app, project, asset, task, tools, arguments):
|
|
pass
|
|
|
|
def validate_jsons(self):
|
|
pass
|