Refactor functions out of Library

This commit is contained in:
Alex Cabal 2024-11-10 22:59:57 -06:00
parent 1449148989
commit b7b63a4be5
24 changed files with 419 additions and 444 deletions

8
lib/Enums/FeedType.php Normal file
View file

@ -0,0 +1,8 @@
<?
namespace Enums;
enum FeedType: string{
case Atom = 'atom';
case Opds = 'opds';
case Rss = 'rss';
}