11 lines
246 B
Raku
11 lines
246 B
Raku
|
use v6.e.PREVIEW;
|
||
|
|
||
|
use JSON::Class:auth<zef:vrurg>;
|
||
|
|
||
|
# Top level metadata for the blog
|
||
|
unit class BlogMeta is json(:pretty); #| The title of the blog
|
||
|
|
||
|
has Str:D $.title is required;
|
||
|
#| The tagline of the blog
|
||
|
has Str:D $.tagline is required;
|