diff options
Diffstat (limited to 'src/helper.py')
| -rw-r--r-- | src/helper.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/helper.py b/src/helper.py new file mode 100644 index 0000000..56014d6 --- /dev/null +++ b/src/helper.py @@ -0,0 +1,17 @@ +# ############################################################################ # +# # +# ::: :::::::: # +# helper.py :+: :+: :+: # +# +:+ +:+ +:+ # +# By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/09/29 11:19:32 by cacharle #+# #+# # +# Updated: 2020/09/29 11:19:50 by cacharle ### ########.fr # +# # +# ############################################################################ # + +import time + + +def current_ms(): + return int(time.time() * 1000) |
