mirror of
https://github.com/mtan93/cachet-url-monitor.git
synced 2026-04-19 14:23:08 +01:00
11 lines
178 B
Python
11 lines
178 B
Python
#!/usr/bin/env python
|
|
from threading import Timer
|
|
import configuration
|
|
|
|
|
|
class Agent(object):
|
|
def __init__(self, configuration):
|
|
self.configuration = configuration
|
|
|
|
|