backup the schema for tables we don't need the data from. RT#85959
[freeside.git] / FS / FS / Misc / Invoicing.pm
1 package FS::Misc::Invoicing;
2 use base qw( Exporter );
3
4 use vars qw( @EXPORT_OK );
5 @EXPORT_OK = qw( spool_formats );
6
7 =head1 NAME
8
9 FS::Misc::Invoicing - Invoice subroutines
10
11 =head1 SYNOPSIS
12
13 use FS::Misc::Invoicing qw( spool_formats );
14
15 =item spool_formats
16   
17 Returns a list of the invoice spool formats.
18
19 =cut
20
21 sub spool_formats {
22   qw(default oneline billco bridgestone ics)
23 }
24
25 1;
26