8 lines
132 B
Python
8 lines
132 B
Python
#!/usr/bin/env python3
|
|
|
|
class EmailChecker:
|
|
def __init__(self, key):
|
|
self.headers = {
|
|
'Key': key,
|
|
}
|