3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-27 13:09:23 +01:00

pmodule-spec: fix link to protocol-modules.svg

[skip ci]
This commit is contained in:
James Lu 2018-06-26 22:02:09 -07:00
parent 420f523dfd
commit c48846727e

View File

@ -4,7 +4,7 @@
Starting with PyLink 2.x, a *protocol module* is any module containing a class derived from `PyLinkNetworkCore` (e.g. `InspIRCdProtocol`), along with a global `Class` attribute set equal to it (e.g. `Class = InspIRCdProtocol`). These modules do everything from managing connections to providing plugins with an API to send and receive data. New protocol modules may be implemented based off any of the classes in the following inheritance tree, with each containing a different amount of abstraction.
![[Protocol module inheritence graph]](protocol-modules.png)
![[Protocol module inheritence graph]](protocol-modules.svg)
## Starting Steps