muse-dl/src/book.cr

13 lines
200 B
Crystal

require "./infoparser.cr"
module Muse::Dl
class Book
@info = Hash(String, String).new
getter :info
def initialize(html : String)
@info = InfoParser.parse(html)
end
end
end