2016-07-07 23:23:18 +02:00
|
|
|
export * from "./auth";
|
|
|
|
|
|
|
|
import APIAction from "./APIActions";
|
|
|
|
|
2016-08-05 00:00:25 +02:00
|
|
|
export const API_SUCCESS = "API_SUCCESS";
|
|
|
|
export const API_REQUEST = "API_REQUEST";
|
|
|
|
export const API_FAILURE = "API_FAILURE";
|
|
|
|
export var { loadArtists } = APIAction("artists", API_REQUEST, API_SUCCESS, API_FAILURE);
|
|
|
|
export var { loadAlbums } = APIAction("albums", API_REQUEST, API_SUCCESS, API_FAILURE);
|
|
|
|
export var { loadSongs } = APIAction("songs", API_REQUEST, API_SUCCESS, API_FAILURE);
|
2016-08-01 00:26:52 +02:00
|
|
|
|
|
|
|
export * from "./paginate";
|
2016-08-03 15:52:47 +02:00
|
|
|
export * from "./store";
|