mirror of
https://github.com/plankanban/planka.git
synced 2025-12-30 09:15:35 +03:00
10 lines
165 B
JavaScript
Executable File
10 lines
165 B
JavaScript
Executable File
const UNAUTHORIZED = 'E_UNAUTHORIZED';
|
|
const NOT_FOUND = 'E_NOT_FOUND';
|
|
const CONFLICT = 'E_CONFLICT';
|
|
|
|
export default {
|
|
UNAUTHORIZED,
|
|
NOT_FOUND,
|
|
CONFLICT,
|
|
};
|