12 lines
237 B
Python
12 lines
237 B
Python
|
|
from .webwatch_html import Watch_HTML
|
|
|
|
|
|
class Plugin_OBJ():
|
|
|
|
def __init__(self, fhdhr, plugin_utils):
|
|
self.fhdhr = fhdhr
|
|
self.plugin_utils = plugin_utils
|
|
|
|
self.webwatch_html = Watch_HTML(fhdhr, plugin_utils)
|