From 9595619b9f6add0956ccb5616248563de47faa75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Thu, 20 Nov 2025 16:29:14 +0100 Subject: [PATCH] chore: remove empty dir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sébastien Han --- src/llama_stack/core/server/routers/__init__.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/llama_stack/core/server/routers/__init__.py diff --git a/src/llama_stack/core/server/routers/__init__.py b/src/llama_stack/core/server/routers/__init__.py deleted file mode 100644 index 213cb75c8..000000000 --- a/src/llama_stack/core/server/routers/__init__.py +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (c) Meta Platforms, Inc. and affiliates. -# All rights reserved. -# -# This source code is licensed under the terms described in the LICENSE file in -# the root directory of this source tree. - -"""FastAPI router implementations for server endpoints. - -This package contains FastAPI router implementations that define the HTTP -endpoints for each API. The API contracts (protocols and models) are defined -in llama_stack_api, while the server routing implementation lives here. -"""