mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
import { albumHelpers } from './albums.helpers';
|
|
import { sharedHelpers } from './shared.helpers';
|
|
import { songHelpers } from './songs.helpers';
|
|
|
|
export const helpers = {
|
|
albums: albumHelpers,
|
|
shared: sharedHelpers,
|
|
songs: songHelpers,
|
|
};
|