mirror of
https://github.com/danbee/micropub.git
synced 2025-03-04 08:59:13 +00:00
9 lines
404 B
Ruby
9 lines
404 B
Ruby
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__)
|
|
autoload :PostJSONParser,
|
|
File.expand_path('micropub/models/post_json_parser.rb', __dir__)
|
|
end
|