summaryrefslogtreecommitdiff
path: root/search/lib/localbucky.pm
diff options
context:
space:
mode:
Diffstat (limited to 'search/lib/localbucky.pm')
-rw-r--r--search/lib/localbucky.pm12
1 files changed, 0 insertions, 12 deletions
diff --git a/search/lib/localbucky.pm b/search/lib/localbucky.pm
deleted file mode 100644
index 41c7553..0000000
--- a/search/lib/localbucky.pm
+++ /dev/null
@@ -1,12 +0,0 @@
-package Bucky;
-my $LOCAL_CONFIG =
- {
- SVN_SECRET => '1s0c4h3dr0n',
- };
-sub config
- {
- my ($self, $key) = @_;
- $key ||= $self;
- return $LOCAL_CONFIG->{$key} if $LOCAL_CONFIG->{$key};
- }
-1;