dolphins7.skeleton/cli/libexec/twenty/console
0x1eef 2e8cf6e333 Drop 'twenty-' prefix from toplevel directories
The directories twenty-{server,client,cli} have been renamed to
not include 'twenty-'. The gems are still published with the twenty-
prefix, otherwise a collision is impossible to avoid. This commit makes
it slightly easier to generalize twenty.
2024-04-21 20:11:25 -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::Console.new(argv).run
end
main(ARGV)