aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/Endpoints/V1/ApiSpecV1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/Endpoints/V1/ApiSpecV1.cs')
-rw-r--r--server/src/Endpoints/V1/ApiSpecV1.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/server/src/Endpoints/V1/ApiSpecV1.cs b/server/src/Endpoints/V1/ApiSpecV1.cs
deleted file mode 100644
index e4f9cc9..0000000
--- a/server/src/Endpoints/V1/ApiSpecV1.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace IOL.GreatOffice.Api.Endpoints.V1;
-
-public static class ApiSpecV1
-{
- private const int MAJOR = 1;
- private const int MINOR = 0;
- public const string VERSION_STRING = "1.0";
-
- public static ApiSpecDocument Document => new() {
- Version = new ApiVersion(MAJOR, MINOR),
- VersionName = VERSION_STRING,
- SwaggerPath = $"/swagger/{VERSION_STRING}/swagger.json",
- OpenApiInfo = new OpenApiInfo {
- Title = AppConstants.API_NAME,
- Version = VERSION_STRING
- }
- };
-}