File: RemoteBTS.pm

package info (click to toggle)
dmbt 0.1.3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 308 kB
  • ctags: 102
  • sloc: perl: 1,590; makefile: 74; python: 65
file content (30 lines) | stat: -rw-r--r-- 379 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package Debbugs::BTS::LDAP;

sub new {
  my $proto = shift;
  my $class = ref($proto) || $proto;
  my $self  = {};
  
  my $server = shift;
  
  $self->{SERVER} = $server;

  bless ($self, $class);
  return $self;
}

sub bugFromID {
  my $self = shift;
  my ($bugid) = @_;

  return undef;
}

sub packageBugs {
  my $self = shift;
  my ($package) = @_;

  return undef;
}

TRUE;