From 9687382b803ec0dc5a7dd55be88b53a4264215f9 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Sun, 23 Apr 2017 21:24:26 +0200 Subject: Initial commit --- lib/Config/Parser.pm6 | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/Config/Parser.pm6 (limited to 'lib/Config/Parser.pm6') diff --git a/lib/Config/Parser.pm6 b/lib/Config/Parser.pm6 new file mode 100644 index 0000000..23effc0 --- /dev/null +++ b/lib/Config/Parser.pm6 @@ -0,0 +1,18 @@ +#! /usr/bin/env false + +use v6.c; + +use Config::Exception::UnimplementedMethodException; + +class Config::Parser +{ + method read(Str $path --> Hash) + { + Config::Exception::UnimplementedMethodException.new.throw(); + } + + method write(Str $path, Hash $config --> Hash) + { + Config::Exception::UnimplementedMethodException.new.throw(); + } +} -- cgit v1.1