tootctl 215 B

1234567891011
  1. #!/usr/bin/env ruby
  2. APP_PATH = File.expand_path('../config/application', __dir__)
  3. require_relative '../config/boot'
  4. require_relative '../lib/cli'
  5. begin
  6. Mastodon::CLI.start(ARGV)
  7. rescue Interrupt
  8. exit(130)
  9. end