class ReeDao::Connections

def add(connection)

def add(connection)
  @connections.push(connection)
end

def all

def all
  @connections
end

def setup

def setup
  @connections = []
end