mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
11 lines
265 B
JavaScript
11 lines
265 B
JavaScript
import createFetchHandler from './Creators/createFetchHandler';
|
|
import * as types from './actionTypes';
|
|
|
|
const section = 'tracks';
|
|
|
|
const trackActionHandlers = {
|
|
[types.FETCH_TRACKS]: createFetchHandler(section, '/track')
|
|
|
|
};
|
|
|
|
export default trackActionHandlers;
|