dolphins7.skeleton/twenty-cli/libexec/twenty/connect

13 lines
237 B
Text
Raw Normal View History

2023-12-07 14:19:53 +01:00
#!/usr/bin/env ruby
# frozen_string_literal: true
2023-12-08 17:28:45 +01:00
libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
2023-12-09 22:46:13 +01:00
require File.join(libdir, "twenty-cli")
2023-12-08 17:28:45 +01:00
2023-12-07 14:19:53 +01:00
##
# main
def main(argv)
Twenty::Command::Connect.new(argv).run
end
main(ARGV)