Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic committed Oct 9, 2024
1 parent 44060ea commit 5da249d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

import type { KibanaRequest } from '@kbn/core-http-server';
import type { AuditLogger, CoreAuditService } from '@kbn/core/server';
import type { MlClient, MlClientParams } from './lib/ml_client/types';
import type { MlClient, MlClientParams } from './types';
import {
getADJobIdsFromRequest,
getDFAJobIdsFromRequest,
getDatafeedIdsFromRequest,
getModelIdsFromRequest,
} from './lib/ml_client/ml_client';
} from './ml_client';

type TaskTypeAD =
| 'put_ad_job'
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/ml/server/lib/ml_client/ml_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import type {
MlGetDatafeedParams,
MlGetTrainedModelParams,
} from './types';
import type { MlAuditLogger } from '../../audit_logger';
import type { MlAuditLogger } from './ml_audit_logger';

export function getMlClient(
client: IScopedClusterClient,
Expand Down

0 comments on commit 5da249d

Please sign in to comment.