monimon/plugins/plugin.py
Justus Grunow 3c0e669596 cert_expiration plugin now parses cert manually with OpenSSL
so that the cert can still be parsed even it doesn't validate
2025-05-08 16:14:20 -04:00

9 lines
146 B
Python

from enum import Enum
class Plugin:
class Status(Enum):
SUCCESS = "Succ"
i = 12345
def f(self):
return 'hello world'