diff options
author | 2018-11-18 03:28:15 +0100 | |
---|---|---|
committer | 2018-11-18 03:28:15 +0100 | |
commit | 0aa910c63ca76fbc2c4329ec6dd3cbb3b4696324 (patch) | |
tree | d1edfc4dc3ea837c3dee0b11b2396d54b21ac56b /bot/__init__.py | |
parent | Hardcoding EAUTH (diff) |
Created an uptime cog. Testing Azure CI deployment.
Diffstat (limited to 'bot/__init__.py')
-rw-r--r-- | bot/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bot/__init__.py b/bot/__init__.py index c411deb6..6b3a2a6f 100644 --- a/bot/__init__.py +++ b/bot/__init__.py @@ -2,6 +2,10 @@ import logging.handlers import os from pathlib import Path +import arrow + +# start datetime +start_time = arrow.utcnow() # set up logging log_dir = Path("bot", "log") |