Refactor feed functions out of Library and add some enums

This commit is contained in:
Alex Cabal 2024-11-15 21:09:42 -06:00
parent 66c44cbdbe
commit 90b70b3235
8 changed files with 117 additions and 101 deletions

View file

@ -0,0 +1,8 @@
<?
namespace Enums;
enum FeedCollectionType: string{
case Authors = 'authors';
case Collections = 'collections';
case Subjects = 'subjects';
}