module Pytty::Client

Public Class Methods

host_url() click to toggle source
# File lib/pytty/client.rb, line 5
def self.host_url
  if ENV["PYTTY_HOST"]
    ENV["PYTTY_HOST"]
  else
    "http://localhost:1234"
  end
end