mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04: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())
|