""" Application. Cache Manager Application. This is the entry point that starts the Cache Manager worker. """ import signal import sys from cache_manager import worker signal.signal(signal.SIGINT, lambda x, y: sys.exit(0)) if __name__ == '__main__': worker.run()