17 lines
300 B
Python
17 lines
300 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
wakatime.constants
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
Constant variable definitions.
|
|
|
|
:copyright: (c) 2016 Alan Hamlett.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
|
|
|
|
SUCCESS = 0
|
|
API_ERROR = 102
|
|
CONFIG_FILE_PARSE_ERROR = 103
|
|
AUTH_ERROR = 104
|
|
UNKNOWN_ERROR = 105
|