#!/usr/bin/env python
from importlib import import_module
if __name__ == '__main__':
    module = import_module('honeypots')
    module.main_logic()
