MCPcopy
hub / github.com/conwnet/github1s / OSSInsightAdapter

Class OSSInsightAdapter

extensions/github1s/src/adapters/ossinsight/index.ts:10–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import { Adapter, PlatformName } from '../types';
9
10export class OSSInsightAdapter implements Adapter {
11 public scheme: string = 'ossinsight';
12 public platformName = PlatformName.GitHub;
13
14 async resolveDataSource() {
15 return OSSInsightDataSource.getInstance();
16 }
17
18 async resolveRouterParser() {
19 return OSSInsightRouterParser.getInstance();
20 }
21
22 activateAsDefault() {}
23
24 deactivateAsDefault() {}
25}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected