module Telegram::NonStandard

Public Instance Methods

download_file(file_d, dir = Dir.pwd) click to toggle source
# File lib/api/nstandard.rb, line 10
def download_file(file_d, dir = Dir.pwd)
  d = Dir.new(dir)
end
download_file_from(uri, dir = Dir.pwd) click to toggle source
# File lib/api/nstandard.rb, line 14
def download_file_from(uri, dir = Dir.pwd)
  uri = URI.parse(uri)
  
end