#!/usr/local/bin/python3.11
# -*- coding: utf-8 -*-

import os, sys
import hared


try:
    hared.run(config=os.getenv('HARED_INI', '/usr/local/etc/hared.ini'))
except KeyboardInterrupt:
    sys.exit(1)
except:
    raise
