From 20e0b28ec3c8e9e0a63759116a32438c18941a59 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 27 Sep 2020 16:58:35 +0200 Subject: Added log checking --- src/philo/__init__.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/philo/__init__.py (limited to 'src/philo/__init__.py') diff --git a/src/philo/__init__.py b/src/philo/__init__.py new file mode 100644 index 0000000..f8cb07f --- /dev/null +++ b/src/philo/__init__.py @@ -0,0 +1,16 @@ +# ############################################################################ # +# # +# ::: :::::::: # +# __init__.py :+: :+: :+: # +# +:+ +:+ +:+ # +# By: charles +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/09/27 16:06:28 by charles #+# #+# # +# Updated: 2020/09/27 16:11:04 by charles ### ########.fr # +# # +# ############################################################################ # + +from philo.table import Table +from philo.philo import Philo +from philo.log import Log +from philo.event import Event -- cgit