aboutsummaryrefslogtreecommitdiff
path: root/lib/Config/Parser.pm6
blob: 1a99ad63b1a327c271e5cbbc8d9d7d6971979eb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /usr/bin/env false

use v6.c;

use Config::Exception::UnimplementedMethodException;

class Config::Parser
{
    method read(Str $path --> Hash)
    {
        Config::Exception::UnimplementedMethodException.new(
            method => "read"
        ).throw();
    }

    method write(Str $path, Hash $config --> Hash)
    {
        Config::Exception::UnimplementedMethodException.new(
            method => "write"
        ).throw();
    }
}