10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
import appConfig from '../../config/app';
|
|
|
|
const getAutomatischInfo = async () => {
|
|
return {
|
|
isCloud: appConfig.isCloud,
|
|
};
|
|
};
|
|
|
|
export default getAutomatischInfo;
|