From 357897a0cd862eaef5236b020d9c2ebe2160a8bd Mon Sep 17 00:00:00 2001 From: yusing Date: Fri, 31 Jan 2025 05:21:32 +0800 Subject: [PATCH] remove schema stuff from code --- internal/common/constants.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/internal/common/constants.go b/internal/common/constants.go index b056178..cf6d0f2 100644 --- a/internal/common/constants.go +++ b/internal/common/constants.go @@ -26,10 +26,6 @@ const ( MiddlewareComposeBasePath = ConfigBasePath + "/middlewares" - SchemasBasePath = "schemas" - ConfigSchemaPath = SchemasBasePath + "/config.schema.json" - FileProviderSchemaPath = SchemasBasePath + "/providers.schema.json" - ComposeFileName = "compose.yml" ComposeExampleFileName = "compose.example.yml" @@ -38,7 +34,6 @@ const ( var RequiredDirectories = []string{ ConfigBasePath, - SchemasBasePath, ErrorPagesBasePath, MiddlewareComposeBasePath, }