mirror of
https://github.com/zoriya/flood.git
synced 2025-12-21 06:35:14 +00:00
10 lines
237 B
JavaScript
10 lines
237 B
JavaScript
import keyMirror from 'keymirror';
|
|
|
|
const ClientConstants = keyMirror({
|
|
ADD_TORRENT: 'client--add-torrent',
|
|
REMOVE_TORRENT: 'client--remove-torrent',
|
|
CLIENT_STATS_CHANGE: 'client--stats-change'
|
|
});
|
|
|
|
export default ClientConstants;
|