MCPcopy Create free account
hub / github.com/Dstack-TEE/dstack / main

Function main

python/ct_monitor/ct_monitor.py:120–128  ·  view source on GitHub ↗

Parse arguments and start the certificate transparency monitor.

()

Source from the content-addressed store, hash-verified

118
119
120def main():
121 """Parse arguments and start the certificate transparency monitor."""
122 parser = argparse.ArgumentParser(
123 description="Monitor certificate transparency logs"
124 )
125 parser.add_argument("-d", "--domain", help="The domain to monitor")
126 args = parser.parse_args()
127 monitor = Monitor(args.domain)
128 monitor.run()

Callers

nothing calls this directly

Calls 2

runMethod · 0.95
MonitorClass · 0.70

Tested by

no test coverage detected