9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { IGlobalVariable } from '@automatisch/types';
|
|
|
|
const isStillVerified = async ($: IGlobalVariable) => {
|
|
const r = await $.http.get('/v1/models');
|
|
return true;
|
|
};
|
|
|
|
export default isStillVerified;
|