Sha256: 3b2b6a7b36f1f9820ce0612c90976b882a96f4dbe9bd61042a8bd35517b604a6
Contents?: true
Size: 323 Bytes
Versions: 1
Compression:
Stored size: 323 Bytes
Contents
# frozen_string_literal: true require_relative "onebot/version" module Onebot class Error < StandardError; end # Raised for valid response with 403 status code. class Forbidden < Error; end # Raised for valid response with 404 status code. class NotFound < Error; end autoload :Client, "onebot/client" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
onebot-0.1.0 | lib/onebot.rb |