diff --git a/apps/sam/python/src/i2p/__init__.py b/apps/sam/python/src/i2p/__init__.py index 14d6d9f144e21bbf5afa095b375f999672c6ca6d..1fc2f5f65bffa28b8c318b07cfdfd66964a0d365 100644 --- a/apps/sam/python/src/i2p/__init__.py +++ b/apps/sam/python/src/i2p/__init__.py @@ -1,9 +1,10 @@ - """ i2p -- I2P Python interface """ -__all__ = ['Error', 'RouterError', 'sam', 'eep', 'router'] +__all__ = ['Error', 'RouterError', 'sam', 'eep', 'router', + 'SocketServer', 'BaseHTTPServer', 'SimpleHTTPServer', 'CGIHTTPServer', + ] class Error(Exception): """Base class for all I2P errors.""" @@ -17,4 +18,3 @@ import router # Internal use only #import samclasses as _samclasses -