Refactor: split message apis to gateway and service (#13126)

### What problem does this PR solve?

Split message apis to gateway and service

### Type of change

- [x] Refactoring
This commit is contained in:
Lynn
2026-02-12 14:43:52 +08:00
committed by GitHub
parent 7210178620
commit 6e7bcf58bc
4 changed files with 240 additions and 160 deletions

View File

@@ -1,5 +1,10 @@
import { lazy, memo, Suspense } from 'react';
import { createBrowserRouter, Navigate, redirect, type RouteObject } from 'react-router';
import {
createBrowserRouter,
Navigate,
redirect,
type RouteObject,
} from 'react-router';
import FallbackComponent from './components/fallback-component';
import { IS_ENTERPRISE } from './pages/admin/utils';
import authorizationUtil from './utils/authorization-util';