refactor: export organizers as a group

refactor: change how indexers are exported
docs: update with some more examples
chore: bump version
This commit is contained in:
Andy Burke 2025-06-22 22:07:53 -07:00
parent d9dd449927
commit f2edf6f292
4 changed files with 99 additions and 3 deletions

11
organizers.ts Normal file
View file

@ -0,0 +1,11 @@
import by_character from './organizers/by_character.ts';
import by_email from './organizers/by_email.ts';
import by_lurid from './organizers/by_lurid.ts';
import by_phone from './organizers/by_phone.ts';
export default {
by_character,
by_email,
by_lurid,
by_phone
};