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, 12 insertions, 0 deletions
diff --git a/search/lib/localbucky.pm b/search/lib/localbucky.pm
new file mode 100644
index 0000000..41c7553
--- /dev/null
+++ b/search/lib/localbucky.pm
@@ -0,0 +1,12 @@
+package Bucky;
+my $LOCAL_CONFIG =
+ {
+ SVN_SECRET => '1s0c4h3dr0n',
+ };
+sub config
+ {
+ my ($self, $key) = @_;
+ $key ||= $self;
+ return $LOCAL_CONFIG->{$key} if $LOCAL_CONFIG->{$key};
+ }
+1;