aboutsummaryrefslogtreecommitdiff
path: root/lib/Config/Parser.pm6
blob: 23effc0d3e9923607cab6ecef16bd756820f14b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
    }
}