Coverage for src/lexigram/notification/cli/generators/template.py: 0%
7 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-26 02:26 +0800
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-26 02:26 +0800
1"""Notification template generator."""
3from __future__ import annotations
5from lexigram.codegen.base import TemplateGeneratorBase
8class NotificationTemplateGenerator(TemplateGeneratorBase):
9 """Generator for notification templates."""
11 name = "notification_template"
12 description = "Generate a notification template"
14 def generate(self, context: dict[str, object]) -> list[object]:
15 """Generate notification template files."""
16 raise NotImplementedError("NotificationTemplateGenerator not yet implemented")