diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-16 17:35:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-16 17:35:59 -0300 |
commit | a41444dbd2078b36cfdb5e5dccc2f6b26676c079 (patch) | |
tree | 811f2c1156d055cd9808c85873278d9e0fbb5a51 /server.py | |
parent | 2cd46d5314ef0e99ebfd9b8f58071402cd5fc663 (diff) | |
download | server-a41444dbd2078b36cfdb5e5dccc2f6b26676c079.tar.gz server-a41444dbd2078b36cfdb5e5dccc2f6b26676c079.tar.bz2 server-a41444dbd2078b36cfdb5e5dccc2f6b26676c079.tar.xz server-a41444dbd2078b36cfdb5e5dccc2f6b26676c079.zip |
Import the good ol' SQL module.
Diffstat (limited to 'server.py')
-rwxr-xr-x | server.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,10 +1,17 @@ #!/usr/bin/python3 +## Global Modules import threading, time, json#, ssl #from simple_websocket_server import WebSocketServer, WebSocket + +## Semi-local modules from websock import WebSocketServer, WebSocket #from endpoint import MainEndpoint + +#### Local Modules from utils import stdout as stdout +from consts import * +import sql ############################################################### # Configuration |