Skip to content

Instantly share code, notes, and snippets.

@MuoTK
MuoTK / access_token.rb
Last active December 16, 2015 17:09
おみくじbotだよー。「***」って書いてあるところを変更して omikuji.rb 叩けばすぐ使えます。
# -*- coding: utf-8 -*-
module Omikuji
module AccessToken
CONSUMER_KEY = "***"
CONSUMER_SECRET = "***"
ACCESS_TOKEN = "***"
ACCESS_TOKEN_SECRET = "***"
end
end