mirror of
https://github.com/electron/electron.git
synced 2026-01-11 00:18:02 -05:00
12 lines
168 B
Python
Executable File
12 lines
168 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
from lib.util import get_electron_version
|
|
|
|
def main():
|
|
print get_electron_version()
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|