17 lines
198 B
Python
17 lines
198 B
Python
import os
|
|
import logging
|
|
##
|
|
import gpg
|
|
|
|
|
|
# Special shoutout to Jthan for ruining my life.
|
|
|
|
|
|
_logger = logging.getLogger()
|
|
|
|
|
|
class GPGAuth(object):
|
|
def __init__(self, gpgauth_xml):
|
|
pass
|
|
|