dolphins7.skeleton/cli/libexec/twenty/down

13 lines
234 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 14:40:42 +01:00
libdir = File.expand_path File.join(__dir__, "..", "..", "lib")
2024-04-23 22:54:36 +02:00
require File.join(libdir, "twenty/cli")
2023-12-08 14:40:42 +01:00
2023-12-07 14:19:53 +01:00
##
# main
def main(argv)
Twenty::Command::Down.new(argv).run
end
main(ARGV)