diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-10-01 11:49:53 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-10-01 11:49:53 +0200 |
| commit | 1f18e740539aed751865ecff9d0f3cba44230e54 (patch) | |
| tree | e23254751cc5a3be551233efb979a00571f40dc6 /src/philo/__init__.py | |
| parent | 763f02a8b1e69c0e26a088824981d23ba1e5386d (diff) | |
| download | philosophers_test-1f18e740539aed751865ecff9d0f3cba44230e54.tar.gz philosophers_test-1f18e740539aed751865ecff9d0f3cba44230e54.tar.bz2 philosophers_test-1f18e740539aed751865ecff9d0f3cba44230e54.zip | |
Refactoring file structure, Added summary
Diffstat (limited to 'src/philo/__init__.py')
| -rw-r--r-- | src/philo/__init__.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/philo/__init__.py b/src/philo/__init__.py new file mode 100644 index 0000000..5915e2b --- /dev/null +++ b/src/philo/__init__.py @@ -0,0 +1,17 @@ +# ############################################################################ # +# # +# ::: :::::::: # +# __init__.py :+: :+: :+: # +# +:+ +:+ +:+ # +# By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/10/01 10:50:41 by cacharle #+# #+# # +# Updated: 2020/10/01 11:08:00 by cacharle ### ########.fr # +# # +# ############################################################################ # + +from philo.philo import Philo +from philo.table import Table +from philo.log import Log +from philo.event import Event +import philo.error as error |
