mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
initial commit
This commit is contained in:
parent
bb39f87f81
commit
67f314c276
2 changed files with 13 additions and 0 deletions
8
pype/tools/standalonepublish/__init__.py
Normal file
8
pype/tools/standalonepublish/__init__.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from .app import (
|
||||
show,
|
||||
cli
|
||||
)
|
||||
__all__ = [
|
||||
"show",
|
||||
"cli"
|
||||
]
|
||||
5
pype/tools/standalonepublish/__main__.py
Normal file
5
pype/tools/standalonepublish/__main__.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
from . import cli
|
||||
|
||||
if __name__ == '__main__':
|
||||
import sys
|
||||
sys.exit(cli(sys.argv[1:]))
|
||||
Loading…
Add table
Add a link
Reference in a new issue