Able to manage channels now

This commit is contained in:
JustSong
2023-04-23 15:42:23 +08:00
parent 63da6dc6a0
commit 9fc375c604
9 changed files with 196 additions and 216 deletions

View File

@@ -0,0 +1,9 @@
export const CHANNEL_OPTIONS = [
{ key: 1, text: 'OpenAI', value: 1, color: 'green' },
{ key: 2, text: 'API2D', value: 2, color: 'blue' },
{ key: 3, text: 'Azure', value: 3, color: 'olive' },
{ key: 4, text: 'CloseAI', value: 4, color: 'teal' },
{ key: 5, text: 'OpenAI-SB', value: 5, color: 'brown' },
{ key: 6, text: 'OpenAI Max', value: 6, color: 'violet' },
{ key: 7, text: 'OhMyGPT', value: 7, color: 'purple' }
];

View File

@@ -1,3 +1,4 @@
export * from './toast.constants';
export * from './user.constants';
export * from './common.constant';
export * from './common.constant';
export * from './channel.constants';