From 28e3fa6d3514a560410f514ab8537a2a1206a7f7 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Sun, 12 Jul 2020 08:54:43 +0200 Subject: Use rakumod extension --- lib/Config/Parser.rakumod | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/Config/Parser.rakumod (limited to 'lib/Config/Parser.rakumod') diff --git a/lib/Config/Parser.rakumod b/lib/Config/Parser.rakumod new file mode 100644 index 0000000..5d0343b --- /dev/null +++ b/lib/Config/Parser.rakumod @@ -0,0 +1,13 @@ +#! /usr/bin/env false + +use v6.d; + +unit class Config::Parser; + +#| Attempt to read the file at a given $path, and returns its +#| parsed contents as a Hash. +method read(IO() $path --> Hash) { … } + +#| Attempt to write the $config Hash at a given $path. Returns +#| True on success, False on failure. +method write(IO() $path, Hash $config --> Bool) { … } -- cgit v1.1