Files
aaPanel/class/monitorModel/base.py
T
2024-04-29 15:35:04 +08:00

15 lines
261 B
Python

# 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/")
import public, re
class monitorBase:
def __init__(self):
pass