10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
|
|
import { EasyServer } from "./EasyServer";
|
|
import { RemoteServer } from "./RemoteServer";
|
|
|
|
export const AigcServer = {
|
|
|
|
EasyServer: EasyServer,
|
|
RemoteServer: RemoteServer,
|
|
};
|