about summary refs log tree commit diff stats
path: root/share/config.pl
blob: dce06def7c3219e0adf9fb54cd8184ef5708cf60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use strict;
use warnings;

my %feeds = (
    andinus => "https://andinus.nand.sh/twtxt",
);

sub get_feeds { return %feeds; }

1;