This repository has been archived on 2025-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
Files
beopen/server/modules/user/start.py
2025-02-10 12:37:33 +00:00

18 lines
429 B
Python

# this file is depricated and set to be removed
## move all dependancies to ./modules/start/start.py
## removal date set for 30-11-2023
from modules.handler import outgoing
from modules.data.datetime import timestamp
def post_slot(sio, sid):
if timestamp().is_valid_time():
outgoing.post_slot(sio, sid)
def main(sio, sid):
post_slot(sio, sid)
notifications(sio, sid)
if __name__ == "__main__":
main()