Source code for houndapi.client.methods

from .subscribe import Subscribe
from .unsubscribe import Unsubscribe
from .poll import Poll

[docs] class APIMethods( Subscribe, Unsubscribe, Poll ): pass