mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-26 04:24:54 +00:00
13 lines
326 B
TypeScript
13 lines
326 B
TypeScript
import { UserPath } from './user';
|
|
import type { OpenAPIPath } from '../type';
|
|
import { WalletPath } from './wallet';
|
|
import { ApiKeyPath } from './openapi';
|
|
import { CustomDomainPath } from './customDomain';
|
|
|
|
export const SupportPath: OpenAPIPath = {
|
|
...UserPath,
|
|
...WalletPath,
|
|
...ApiKeyPath,
|
|
...CustomDomainPath
|
|
};
|