3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-12 05:02:33 +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 time
import threading import threading
import base64 import base64

View File

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

View File

@ -1,3 +1,7 @@
"""
ratbox.py: ircd-ratbox protocol module for PyLink.
"""
import time import time
from pylinkirc import utils, conf 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 import time