py-libp2p/host/basic_host.py

9 lines
290 B
Python
Raw Normal View History

2018-10-15 01:47:06 +08:00
from host_interface import Host
2018-10-15 02:11:03 +08:00
# Upon host creation, host takes in options,
# including the list of addresses on which to listen.
# Host then parses these options and delegates to its Network instance,
# telling it to listen on the given listen addresses.
2018-10-15 01:47:06 +08:00
class BasicHost(Host):
pass