From f434327a9692e483c21a78c1fa09d00f2d1c1a66 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Tue, 20 Jan 2015 09:19:51 -0500 Subject: [PATCH] move constant values to a new module Signed-off-by: Alfredo Deza --- radosgw_agent/constants.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 radosgw_agent/constants.py diff --git a/radosgw_agent/constants.py b/radosgw_agent/constants.py new file mode 100644 index 0000000..0492ff6 --- /dev/null +++ b/radosgw_agent/constants.py @@ -0,0 +1,6 @@ + +RESULT_SUCCESS = 0 +RESULT_ERROR = 1 + +DEFAULT_TIME = '1970-01-01 00:00:00' + -- 2.47.3