module Vedeu
  class DummyInterface < Interface
    def initial_state
    end

    def input
      super
    end

    def output
      super
    end
  end
end