mirror of
https://github.com/danbee/micropub.git
synced 2025-03-04 08:59:13 +00:00
8 lines
249 B
Ruby
8 lines
249 B
Ruby
require 'json'
|
|
|
|
module Micropub
|
|
autoload :Webserver, File.expand_path('micropub/webserver.rb', __dir__)
|
|
autoload :Github, File.expand_path('micropub/github.rb', __dir__)
|
|
autoload :Post, File.expand_path('micropub/models/post.rb', __dir__)
|
|
end
|