2016-03-09 20:46:15 +00:00
|
|
|
const SliceReadStatus = {
|
|
|
|
Success: 'success',
|
|
|
|
StreamNotFound: 'streamNotFound',
|
|
|
|
StreamDeleted: 'streamDeleted'
|
|
|
|
};
|
2017-04-16 19:51:17 +00:00
|
|
|
Object.freeze(SliceReadStatus);
|
2016-03-09 20:46:15 +00:00
|
|
|
|
|
|
|
module.exports = SliceReadStatus;
|