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