mirror of
https://github.com/aaPanel/aaPanel.git
synced 2026-08-17 21:25:47 +02:00
1. Add user login function. 2. Add the first professional plug-in Nginx WAF. 3. Release a new version of the online editor. 4. Fixed some bugs.
11 lines
177 B
Python
11 lines
177 B
Python
|
|
#coding: utf-8
|
|
import os,sys
|
|
sys.path.insert(0,"/www/server/panel/class/")
|
|
try:
|
|
import send_to_user
|
|
msg=send_to_user.send_to_user()
|
|
msg.main()
|
|
except:
|
|
pass
|