2018-08-25 07:25:39 -04:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
APP_PATH = File.expand_path('../config/application', __dir__)
|
2020-05-15 12:41:27 -04:00
|
|
|
|
2018-09-06 23:42:54 -04:00
|
|
|
require_relative '../config/boot'
|
2018-08-25 07:25:39 -04:00
|
|
|
require_relative '../lib/cli'
|
2020-05-15 12:41:27 -04:00
|
|
|
|
|
|
|
begin
|
|
|
|
Mastodon::CLI.start(ARGV)
|
|
|
|
rescue Interrupt
|
|
|
|
exit(130)
|
|
|
|
end
|