diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/secret_sauce.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/host/secret_sauce.py b/host/secret_sauce.py new file mode 100644 index 0000000..bf183ac --- /dev/null +++ b/host/secret_sauce.py @@ -0,0 +1,7 @@ + +class SpamError(ValueError): + def __str__(self): + return ' '.join(self.args) + +def check_spam(addr, data): + pass |