Skip to content
Snippets Groups Projects
wrapper.py 502 B
Newer Older
##
# This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course.
# © Copyright Utrecht University (Department of Information and Computing Sciences)
##

from service import MLServer
from MLDriver import MLDriver

##
# __main__ starts the MLServer and listens for incoming messages
#   Return: None, returns nothing
##
    server = MLServer()
    MLDriver(server).listen()

__main__()