timeseries-hoarder/lib/timeseries/hoarder.rb

13 lines
228 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
require_relative "hoarder/version"
require_relative 'hoarder/TimeseriesDatabase.rb'
module Timeseries
module Hoarder
class Error < StandardError; end
# Your code goes here...
end
end