no reason for member_type to build lazily, it should be required
[catagits/Reaction.git] / lib / Reaction / UI / RenderingContext.pm
1 package Reaction::UI::RenderingContext;
2
3 use Reaction::Class;
4
5 class RenderingContext which {
6
7   implements 'render' => as {
8     confess "abstract method";
9   };
10
11 };
12
13 1;