Move embeddings impl to a different module (#179)

* Move embeddings impl to a different module
* Disable plugin verifier for sub modules
This commit is contained in:
Carl-Robert 2023-08-26 12:55:32 +03:00 committed by GitHub
parent d68ef65f8b
commit 3c2c23b3ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
44 changed files with 198 additions and 104 deletions

View file

@ -0,0 +1,11 @@
package ee.carlrobert.codegpt.indexes;
import com.intellij.util.messages.Topic;
public interface CodebaseIndexingCompletedNotifier {
Topic<CodebaseIndexingCompletedNotifier> INDEXING_COMPLETED_TOPIC =
Topic.create("codebaseIndexingCompleted", CodebaseIndexingCompletedNotifier.class);
void indexingCompleted();
}