andy-stack_vaultkeeper-ai/Modals/HelpModal.ts
Andrew Beal 4c2630b7f5 feat: add help modal button to top bar and update license to MIT
- 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
2025-11-07 00:28:22 +00:00

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);
}
}