module Github::Connection

def header_options() # :nodoc:

:nodoc:
def header_options() # :nodoc:
  {
    :headers => {
      'Accept'       => '*/*', #accepts,
      'User-Agent'   => user_agent,
      'Content-Type' => 'application/x-www-form-urlencoded'
    },
    :ssl => { :verify => false },
    :url => endpoint
  }
end