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

1"""Notification template generator.""" 

2 

3from __future__ import annotations 

4 

5from lexigram.codegen.base import TemplateGeneratorBase 

6 

7 

8class NotificationTemplateGenerator(TemplateGeneratorBase): 

9 """Generator for notification templates.""" 

10 

11 name = "notification_template" 

12 description = "Generate a notification template" 

13 

14 def generate(self, context: dict[str, object]) -> list[object]: 

15 """Generate notification template files.""" 

16 raise NotImplementedError("NotificationTemplateGenerator not yet implemented")