A Python port of the Invisible Internet Project (I2P)
at main 8 lines 306 B view raw
1__version__ = "0.1.0" 2"""I2P time module — Clock offset management and build time sanity checks.""" 3 4from i2p_time.clock import Clock 5from i2p_time.build_time import BuildTime 6from i2p_time.timestamper import Timestamper, UpdateListener 7 8__all__ = ["Clock", "BuildTime", "Timestamper", "UpdateListener"]