コード例 #1
0
ファイル: postreceive.py プロジェクト: anirudh2290/harold
 def __init__(self, config, http, bot):
     ProtectedResource.__init__(self, http)
     self.dispatcher = PostReceiveDispatcher(config, bot)
コード例 #2
0
ファイル: irc.py プロジェクト: anirudh2290/harold
 def __init__(self, http, dispatcher):
     ProtectedResource.__init__(self, http)
     self.dispatcher = dispatcher
コード例 #3
0
ファイル: alerts.py プロジェクト: jalons/harold
 def __init__(self, http, alerter):
     ProtectedResource.__init__(self, http)
     self.alerter = alerter
コード例 #4
0
ファイル: deploy.py プロジェクト: anirudh2290/harold
 def __init__(self, http, monitor):
     ProtectedResource.__init__(self, http)
     self.monitor = monitor
コード例 #5
0
ファイル: watchdog.py プロジェクト: anirudh2290/harold
 def __init__(self, http, watchdog):
     ProtectedResource.__init__(self, http)
     self.watchdog = watchdog