about summary refs log tree commit diff stats
path: root/share/config.pl
diff options
context:
space:
mode:
Diffstat (limited to 'share/config.pl')
-rw-r--r--share/config.pl12
1 files changed, 12 insertions, 0 deletions
diff --git a/share/config.pl b/share/config.pl
new file mode 100644
index 0000000..084eca7
--- /dev/null
+++ b/share/config.pl
@@ -0,0 +1,12 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+my %feeds = (
+    example => "https://example.com/twtxt.txt",
+);
+
+sub get_feeds { return %feeds; }
+
+1;