aboutsummaryrefslogtreecommitdiffstats
path: root/fancy_bear/contextio/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'fancy_bear/contextio/base.rb')
-rw-r--r--fancy_bear/contextio/base.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/fancy_bear/contextio/base.rb b/fancy_bear/contextio/base.rb
new file mode 100644
index 0000000..84473d1
--- /dev/null
+++ b/fancy_bear/contextio/base.rb
@@ -0,0 +1,13 @@
+require 'contextio'
+
+module FancyBear
+ module ContextIO
+
+ class Base
+ def initialize
+ @contextio = ::ContextIO.new(API_KEY, API_SECRET)
+ end
+ end
+
+ end
+end