aboutsummaryrefslogtreecommitdiff
path: root/lib/Config/Parser.pm6
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-07-12 08:54:43 +0200
committerPatrick Spek <p.spek@tyil.nl>2020-07-12 08:59:21 +0200
commit28e3fa6d3514a560410f514ab8537a2a1206a7f7 (patch)
tree00772a675945ae42b77e29ed04a0abfe3593cb46 /lib/Config/Parser.pm6
parente06400db23c431808a89609f87f02fda61c56dd4 (diff)
Use rakumod extension
Diffstat (limited to 'lib/Config/Parser.pm6')
-rw-r--r--lib/Config/Parser.pm613
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/Config/Parser.pm6 b/lib/Config/Parser.pm6
deleted file mode 100644
index 5d0343b..0000000
--- a/lib/Config/Parser.pm6
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /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) { … }