13 lines
No EOL
258 B
Python
13 lines
No EOL
258 B
Python
"""
|
|
The panopticon provides a way to observe (& control) all running Hugveys trough a web interface
|
|
"""
|
|
|
|
import logging
|
|
import tornado
|
|
|
|
|
|
logger = logging.getLogger("panopticon")
|
|
|
|
class Panopticon(object):
|
|
def __init__(self, config, command):
|
|
pass |