Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lita-tox/lib/tox.rb
2015-09-13 15:39:20 +00:00

17 lines
279 B
Ruby

require 'tox/tox'
class Tox
attr_accessor :running
def initialize(options = Tox::Options.new)
initialize_with(options)
end
def on_friend_request(&block)
@on_friend_request = block
end
def on_friend_message(&block)
@on_friend_message = block
end
end