import * as uuid from 'uuid'

export interface LoggerState {
    runID: string
}

const initialLoggerState = {
    runID: uuid(),
}

// currently there are no logger actions
export const loggerReducer =
    (state: LoggerState = initialLoggerState, action: null): LoggerState =>
        state
