import { Action } from 'lib/types/interfaces';




export const fetchSHA = (specs?): Action => ({
	type: 'sha::FETCH',
	specs
});

export const fetchedSHA = (data?): Action => ({
	type: 'sha::FETCHED',
	...data
});

export const failedFetchSHA = (error?): Action => ({
	type: 'sha::FAILED_FETCH',
	...error
});



