config.js 271 B

12345678910111213141516
  1. const config = {
  2. post:"POST",
  3. get:"GET",
  4. SUCCESS:"10000",
  5. page_index:{
  6. home:0,
  7. ai_chat:1,
  8. ai_draw:2,
  9. },
  10. notification:{
  11. login_state_changed:"login_state_changed",
  12. switch_page_index: "switch_page_index",
  13. },
  14. userData:"userData",
  15. };
  16. module.exports = config;