##
# 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)
##

#!/usr/bin/env python
from service import MLServer
from MLDriver import MLDriver


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


__main__()