module Totter class Client # Client methods for working with configuration. module Configuration # Get the configuration from the API. # # @return [Hashie::Mash] A hash of configuration data. # @example # Totter.configuration def configuration get 'configuration' end end end end