about summary refs log blame commit diff
path: root/bin/tootctl
blob: a9ebb22c6dc5acb3768627cc1bc544d8cbaec79e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                             
 
                                 
                             




                           
#!/usr/bin/env ruby
APP_PATH = File.expand_path('../config/application', __dir__)

require_relative '../config/boot'
require_relative '../lib/cli'

begin
  Mastodon::CLI.start(ARGV)
rescue Interrupt
  exit(130)
end