Browse Source

Init main program

tags/v0.1.0
Jérôme Deuchnord 4 years ago
parent
commit
dc1b27dfbf
No known key found for this signature in database GPG Key ID: 6D1B91F131F89577
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      main.py

+ 8
- 0
main.py View File

@@ -0,0 +1,8 @@
import sys
import ephem

def main(argv):
print(argv)

if '__main__' == __name__:
main(sys.argv)

Loading…
Cancel
Save