about summary refs log tree commit diff stats
path: root/share
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-08-29 20:39:33 +0530
committerAndinus <andinus@nand.sh>2020-08-29 20:39:33 +0530
commit31e045b3decde15a8e85b0254a099779ec86b91e (patch)
tree0102df7e1a66ecbc16f83b473c5de402a35ac959 /share
parent4fdeba51c8d73a80120f8fc22623fe3864bea0d7 (diff)
downloadpyxis-31e045b3decde15a8e85b0254a099779ec86b91e.tar.gz
Add example config file & document it
Diffstat (limited to 'share')
-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;