3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-11 20:52:42 +01:00

protocols: add headers to modules where missing

This commit is contained in:
James Lu 2017-08-11 12:27:58 -07:00
parent 8df7b5319e
commit 046fe0c385
4 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,10 @@
"""
clientbot.py: Clientbot (regular IRC bot) protocol module for PyLink.
"""
# Here be dragons. There are lots of hacks and stubs in this module to recreate the same sort of state
# that a regular server would have (e.g. spawning virtual users for things like Relay).
import time
import threading
import base64

View File

@ -1,3 +1,7 @@
"""
hybrid.py: IRCD-Hybrid protocol module for PyLink.
"""
import time
from pylinkirc import utils, conf

View File

@ -1,3 +1,7 @@
"""
ratbox.py: ircd-ratbox protocol module for PyLink.
"""
import time
from pylinkirc import utils, conf

View File

@ -1,5 +1,5 @@
"""
unreal.py: UnrealIRCd 4.0 protocol module for PyLink.
unreal.py: UnrealIRCd 4.x protocol module for PyLink.
"""
import time