config.js 229 B

123456789101112131415
  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. },
  13. userData:"userData",
  14. };
  15. module.exports = config;