Files

17 lines
355 B
Python
Raw Permalink Normal View History

2026-04-07 02:04:22 +05:30
# coding: utf-8
import os, sys, time, json
panelPath = '/www/server/panel'
os.chdir(panelPath)
if not panelPath + "/class/" in sys.path:
sys.path.insert(0, panelPath + "/class/")
if not panelPath + "/class_v2/" in sys.path:
sys.path.insert(0, panelPath + "/class_v2/")
import public, re
class monitorBase:
def __init__(self):
pass