diff options
author | Andinus <andinus@nand.sh> | 2020-08-29 20:39:33 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-08-29 20:39:33 +0530 |
commit | 31e045b3decde15a8e85b0254a099779ec86b91e (patch) | |
tree | 0102df7e1a66ecbc16f83b473c5de402a35ac959 /share | |
parent | 4fdeba51c8d73a80120f8fc22623fe3864bea0d7 (diff) | |
download | pyxis-31e045b3decde15a8e85b0254a099779ec86b91e.tar.gz |
Add example config file & document it
Diffstat (limited to 'share')
-rw-r--r-- | share/config.pl | 12 |
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; |