mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-16 11:15:34 +00:00
11 lines
314 B
Java
11 lines
314 B
Java
package ee.carlrobert.codegpt.toolwindow.chat;
|
|
|
|
import com.intellij.util.messages.Topic;
|
|
|
|
public interface YouModelChangeNotifier {
|
|
|
|
Topic<YouModelChangeNotifier> YOU_MODEL_CHANGE_NOTIFIER_TOPIC =
|
|
Topic.create("youModelChangeTopic", YouModelChangeNotifier.class);
|
|
|
|
void modelChanged(boolean selected);
|
|
}
|