From f3f6535aad2c899afbc71b273ebd9282438b7814 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Sun, 21 Apr 2024 22:39:28 +0200 Subject: [PATCH] fix: rename fiber entrypoint from http/api to http/app (#2096) Signed-off-by: Ettore Di Giacinto Co-authored-by: Dave --- core/http/{api.go => app.go} | 0 core/http/{api_test.go => app_test.go} | 0 core/http/{apt_suite_test.go => http_suite_test.go} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename core/http/{api.go => app.go} (100%) rename core/http/{api_test.go => app_test.go} (100%) rename core/http/{apt_suite_test.go => http_suite_test.go} (100%) diff --git a/core/http/api.go b/core/http/app.go similarity index 100% rename from core/http/api.go rename to core/http/app.go diff --git a/core/http/api_test.go b/core/http/app_test.go similarity index 100% rename from core/http/api_test.go rename to core/http/app_test.go diff --git a/core/http/apt_suite_test.go b/core/http/http_suite_test.go similarity index 100% rename from core/http/apt_suite_test.go rename to core/http/http_suite_test.go