aboutsummaryrefslogtreecommitdiffstats
path: root/t/bin.pm
blob: e216c974247bdb777db1041e78026011881f1df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Bin;

use strict;
use warnings;

use Exporter qw(import);
our @EXPORT = qw($BIN);

use File::Spec;

our $BIN = File::Spec->rel2abs('git-todo');

1;