implement settings file

This commit is contained in:
r4sas
2017-03-02 13:09:52 +03:00
parent 320d2824dc
commit 6a6427a134
5 changed files with 32 additions and 10 deletions

View File

@@ -6,6 +6,7 @@ import argparse
import pbincli.actions
from pbincli.utils import PBinCLIException
def main():
parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers(title="actions", help="List of commands")
@@ -54,5 +55,6 @@ def main():
else:
parser.print_help()
if __name__ == "__main__":
main()