diff --git a/lib/DB/BlogMeta.rakumod b/lib/DB/BlogMeta.rakumod new file mode 100644 index 0000000..032e5da --- /dev/null +++ b/lib/DB/BlogMeta.rakumod @@ -0,0 +1,10 @@ +use v6.e.PREVIEW; + +use JSON::Class:auth; + +# 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;