]> Dogcows Code - chaz/git-codeowners/blob - lib/App/Codeowners/Formatter/TSV.pm
refactor formatters
[chaz/git-codeowners] / lib / App / Codeowners / Formatter / TSV.pm
1 package App::Codeowners::Formatter::TSV;
2 # ABSTRACT: Format codeowners output as tab-separated values
3
4 =head1 DESCRIPTION
5
6 This is a L<App::Codeowners::Formatter::CSV> that formats output using L<Text::CSV>.
7
8 =cut
9
10 use warnings;
11 use strict;
12
13 our $VERSION = '9999.999'; # VERSION
14
15 use parent 'App::Codeowners::Formatter::CSV';
16
17 sub sep { "\t" }
18
19 1;
This page took 0.036242 seconds and 4 git commands to generate.