summaryrefslogtreecommitdiff
path: root/FS/FS/part_export/cable_sql.pm
blob: 9310b0489735b0a2e2aa48a68a46c28997ebf175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package FS::part_export::cable_sql;
use base qw( FS::part_export::sql_Common );

use strict;
use vars qw( %info );
#use Tie::IxHash;

#tie my %options, 'Tie::IxHash',
#  %{__PACKAGE__->sql_options},
#  #more options...
#;

%info = (
  'svc'     => 'svc_cable',
  'desc'    => 'Real time export of cable service to SQL databases',
  'options' => __PACKAGE__->sql_options, #\%options,
  'no_machine' => 1,
  'notes'      => <<END
Export cable service to SQL databases.
END
);

1;