From 5b39384442e48eb2e2d09c8be572cecbc79eb133 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Fri, 16 Feb 2024 03:20:42 -0300 Subject: [PATCH] Fix require in `lib/twenty.rb` --- lib/twenty.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/twenty.rb b/lib/twenty.rb index b9da598..2a3c981 100644 --- a/lib/twenty.rb +++ b/lib/twenty.rb @@ -1,5 +1,5 @@ module Twenty require "twenty-cli" - require "twenty-frontend" - require "twenty-backend" + require "twenty-server" + require "twenty-client" end