15 lines
250 B
Python
15 lines
250 B
Python
import os
|
|
|
|
from Classes.System.Server import Server
|
|
|
|
def main():
|
|
# retrieves host data from environment
|
|
HOST = "127.0.0.1"
|
|
TCPPORT = "54322"
|
|
UDPPORT = "54323"
|
|
|
|
Server(HOST, TCPPORT, UDPPORT)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |