aboutsummaryrefslogtreecommitdiffstats
path: root/fancy_bear/contextio/base.rb
blob: 84473d138fea9dfba169b681ed0382545009fefc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'contextio'

module FancyBear
  module ContextIO
    
    class Base
      def initialize
        @contextio = ::ContextIO.new(API_KEY, API_SECRET)
      end
    end
    
  end
end