mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
8 lines
116 B
Python
8 lines
116 B
Python
|
import sys
|
||
|
from .runner import run
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
exit = run()
|
||
|
if exit:
|
||
|
sys.exit(exit)
|