#!/usr/bin/python3

import central_sdi
from central_sdi import hooks

if __name__ == '__main__':
    central_sdi.init()
    env = central_sdi.env
    hooks.disconnect(
        logger=env.logger,
        conn=env.connection,
        cache=env.cache,
    )
