8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
import { IGlobalVariable } from '@automatisch/types';
|
|
|
|
const verifyCredentials = async ($: IGlobalVariable) => {
|
|
await $.http.get('/v1/models');
|
|
};
|
|
|
|
export default verifyCredentials;
|