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