mirror of https://github.com/akelge/zsh
25 lines
339 B
Python
25 lines
339 B
Python
#!/usr/bin/env python
|
|
#-*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Copyright by @@LONGNAME@@ <@@EMAIL@@>
|
|
First version: @@crdate@@
|
|
|
|
Synopsis: @@DESCR@@
|
|
|
|
$Id$
|
|
|
|
"""
|
|
|
|
__version__ ='0.1'
|
|
__author__ ='@@LONGNAME@@ <@@EMAIL@@>'
|
|
|
|
|
|
def main():
|
|
pass
|
|
|
|
# If we have been called as 'python <script>' let's call main function
|
|
if __name__ == "__main__":
|
|
main()
|