mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
9 lines
290 B
Python
9 lines
290 B
Python
from host_interface import Host
|
|
|
|
# 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.
|
|
|
|
class BasicHost(Host):
|
|
pass |