This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const defaultSnapshot = { | |
token: '', | |
myInnerInfo: { login: '', type: '' }, | |
myDisplayInfo: { login: '', type: '' }, | |
loginInfo: { login: '', type: '' }, | |
loginList: [], | |
loading: false, | |
logined: false, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AppleRecord < Record | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module CheetahCub | |
class Transaction | |
attr_reader :transaction_delegate | |
delegate :save, to: :transaction_delegate | |
# def save | |
# transaction_delegate.save | |
# end | |
def initialize | |
@transaction_delegate = Config.module_prefix::Transaction.new | |
end |