init
This commit is contained in:
8
platform/cli/src/commands/enums/colors.js
Normal file
8
platform/cli/src/commands/enums/colors.js
Normal file
@@ -0,0 +1,8 @@
|
||||
const colors = {
|
||||
LIGHT: '#5acce6',
|
||||
MAIN: '#0944b3',
|
||||
DARK: '#090c29',
|
||||
ACTIVE: '#348cfd',
|
||||
};
|
||||
|
||||
export default colors;
|
||||
5
platform/cli/src/commands/enums/endPoints.js
Normal file
5
platform/cli/src/commands/enums/endPoints.js
Normal file
@@ -0,0 +1,5 @@
|
||||
const endPoints = {
|
||||
NPM_KEYWORD: 'https://registry.npmjs.com/-/v1/search?text=keywords:',
|
||||
};
|
||||
|
||||
export default endPoints;
|
||||
5
platform/cli/src/commands/enums/index.js
Normal file
5
platform/cli/src/commands/enums/index.js
Normal file
@@ -0,0 +1,5 @@
|
||||
import keywords from './keywords.js';
|
||||
import colors from './colors.js';
|
||||
import endPoints from './endPoints.js';
|
||||
|
||||
export { keywords, colors, endPoints };
|
||||
6
platform/cli/src/commands/enums/keywords.js
Normal file
6
platform/cli/src/commands/enums/keywords.js
Normal file
@@ -0,0 +1,6 @@
|
||||
const keywords = {
|
||||
MODE: 'ohif-mode',
|
||||
EXTENSION: 'ohif-extension',
|
||||
};
|
||||
|
||||
export default keywords;
|
||||
Reference in New Issue
Block a user