aboutsummaryrefslogtreecommitdiff
path: root/internal/fetchdatasource
diff options
context:
space:
mode:
Diffstat (limited to 'internal/fetchdatasource')
-rw-r--r--internal/fetchdatasource/fetchdatasource.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/fetchdatasource/fetchdatasource.go b/internal/fetchdatasource/fetchdatasource.go
index dfe30fc9..af03c733 100644
--- a/internal/fetchdatasource/fetchdatasource.go
+++ b/internal/fetchdatasource/fetchdatasource.go
@@ -436,3 +436,13 @@ func (ds *FetchDataSource) GetSymbols(ctx context.Context, pkgPath, modulePath,
}
return doc.API, nil
}
+
+// GetImportedBy is not implemented.
+func (ds *FetchDataSource) GetImportedBy(ctx context.Context, pkgPath, modulePath string, limit int) ([]string, error) {
+ return nil, nil
+}
+
+// GetImportedByCount is not implemented.
+func (ds *FetchDataSource) GetImportedByCount(ctx context.Context, pkgPath, modulePath string) (int, error) {
+ return 0, nil
+}