Initial import

This commit is contained in:
Dan Milne
2020-04-22 00:18:09 +10:00
commit 0929b3eb80
18 changed files with 392 additions and 0 deletions

14
lib/openlib.rb Normal file
View File

@@ -0,0 +1,14 @@
# frozen_string_literal: true
require 'openlib/version'
require 'openlib/client'
require 'openlib/book'
module Openlib
ID_KINDS = %i[isbn oclc lccn olid].freeze
class Error < StandardError; end
# Your code goes here...
end