Sha256: e406154b18718ecc5769d5008d45e2aebd91f73dc7ed766cee0c031fc2f246fc
Contents?: true
Size: 330 Bytes
Versions: 1
Compression:
Stored size: 330 Bytes
Contents
# frozen_string_literal: true module TermiiRuby class AbstractClient def make_get_request raise NotImplementedError, "Subclasses must implement the make_get_request method" end def make_post_request raise NotImplementedError, "Subclasses must implement the make_post_request method" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
termii_ruby-0.1.0 | lib/termii_ruby/abstract_client.rb |