# frozen_string_literal: true module SplitIoClient module SSE module EventSource class Status CONNECTING = 'Connecting' CONNECTED = 'Connected' DISCONNECTED = 'Disconnected' end end end end