You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
489 B
23 lines
489 B
"""EasyEngine Nginx, PHP, MySQL info module."""
|
|
|
|
|
|
class EEInfo():
|
|
"""Intialization for info"""
|
|
def ___init__():
|
|
# TODO common method for info
|
|
pass
|
|
|
|
"""Method to disaply info for PHP"""
|
|
def infophp():
|
|
# TODO info for php
|
|
pass
|
|
|
|
"""Method to disaply info for Nginx"""
|
|
def infonginx():
|
|
# TODO info for Nginx
|
|
pass
|
|
|
|
"""Method to disaply info for MySQL"""
|
|
def infomysql():
|
|
# TODO info for MySQL
|
|
pass
|
|
|