mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
- Add HelpModal integration to TopBar with circle-help icon - Update LICENSE from 0BSD to MIT License - Refactor modal constructors to use dependency injection - Format code style (quotes, indentation) in TopBar and ConversationHistoryModal
13 lines
No EOL
351 B
TypeScript
13 lines
No EOL
351 B
TypeScript
import type AIAgentPlugin from "main";
|
|
import { Modal } from "obsidian";
|
|
import { Resolve } from "Services/DependencyService";
|
|
import { Services } from "Services/Services";
|
|
|
|
export class HelpModal extends Modal {
|
|
|
|
public constructor() {
|
|
const plugin = Resolve<AIAgentPlugin>(Services.AIAgentPlugin);
|
|
super(plugin.app);
|
|
}
|
|
|
|
} |