muse-dl/src/book.cr

13 lines
200 B
Crystal
Raw Normal View History

2020-03-28 20:02:55 +00:00
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