diff options
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; |