adding at_server_init to at_server_startstop

This commit is contained in:
Andrew Bastien 2022-07-25 17:16:00 -04:00
parent 99d300799e
commit 18edbce624
3 changed files with 38 additions and 14 deletions

View file

@ -7,6 +7,7 @@ allows for customizing the server operation as desired.
This module must contain at least these global functions:
at_server_init()
at_server_start()
at_server_stop()
at_server_reload_start()
@ -16,6 +17,11 @@ at_server_cold_stop()
"""
def at_server_init():
"""
This is called first as the server is starting up, regardless of how.
"""
pass
def at_server_start():
"""