ue_pe_web/scripts/03_server/src_students_6/myserver/__main__.py
2024-03-20 18:41:29 +01:00

24 lines
655 B
Python

######################################################################
# Copyright (c) Adrien Luxey-Bitri, Boris Baldassari
#
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
######################################################################
"""
A package for learning network programming in Python.
This module (file) is the entrypoint of the package.
"""
# Plus d'infos sur __main__.py:
# https://docs.python.org/3/library/__main__.html
from myserver.cli import main
main()