]> Dogcows Code - chaz/git-codeowners/blobdiff - lib/App/Codeowners/Formatter/TSV.pm
refactor formatters
[chaz/git-codeowners] / lib / App / Codeowners / Formatter / TSV.pm
diff --git a/lib/App/Codeowners/Formatter/TSV.pm b/lib/App/Codeowners/Formatter/TSV.pm
new file mode 100644 (file)
index 0000000..dbf12d4
--- /dev/null
@@ -0,0 +1,19 @@
+package App::Codeowners::Formatter::TSV;
+# ABSTRACT: Format codeowners output as tab-separated values
+
+=head1 DESCRIPTION
+
+This is a L<App::Codeowners::Formatter::CSV> that formats output using L<Text::CSV>.
+
+=cut
+
+use warnings;
+use strict;
+
+our $VERSION = '9999.999'; # VERSION
+
+use parent 'App::Codeowners::Formatter::CSV';
+
+sub sep { "\t" }
+
+1;
This page took 0.020623 seconds and 4 git commands to generate.