diff options
author | antialias <antialias@leap.se> | 2012-08-13 22:53:40 -0700 |
---|---|---|
committer | antialias <antialias@leap.se> | 2012-08-13 22:53:40 -0700 |
commit | e1103904fbdd9b54b53075956c279271c17e9a8f (patch) | |
tree | 9e87eecd30d23d32a323ca365684dea63706d284 /src/leap/Authentication.py | |
parent | c46d8da153ac658c8bd145376e22b1218db1090a (diff) |
First (non-working) pass at abstracting exisiting functionality into OO framework.
Diffstat (limited to 'src/leap/Authentication.py')
-rw-r--r-- | src/leap/Authentication.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/leap/Authentication.py b/src/leap/Authentication.py new file mode 100644 index 00000000..0bd54fd6 --- /dev/null +++ b/src/leap/Authentication.py @@ -0,0 +1,11 @@ +""" +Authentication Base Class +""" + +class Authentication(object): + """ + I have no idea how Authentication (certs,?) will be done, but stub it here. + """ + pass + + |