dolphins7.skeleton/cli/libexec/twenty/connect
2024-04-23 17:54:36 -03:00

12 lines
237 B
Ruby
Executable file

#!/usr/bin/env ruby
# frozen_string_literal: true
libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
require File.join(libdir, "twenty/cli")
##
# main
def main(argv)
Twenty::Command::Connect.new(argv).run
end
main(ARGV)