A Python port of the Invisible Internet Project (I2P)
1__version__ = "0.1.0"
2"""I2P router core — central coordinator, configuration, and lifecycle."""
3from i2p_router.core import RouterContext
4from i2p_router.config import RouterConfig
5from i2p_router.router import Router, RouterState
6from i2p_router.bootstrap import RouterBootstrap
7
8__all__ = ["RouterContext", "RouterConfig", "Router", "RouterState", "RouterBootstrap"]