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

13 lines
235 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")
2023-12-08 17:28:45 +01: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::Up.new(argv).run
end
main(ARGV)