We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee4959f commit b789501Copy full SHA for b789501
README.md
@@ -23,9 +23,6 @@ The following API routes are available:
23
* **`GET /skin/cache`**
24
* **Description**: Returns a JSON array of the names of all currently cached (generated) skins.
25
26
-* **`GET /uvs`**
27
- * **Description**: Serves a folder containing all UV (unwrap) images. This route acts as a mirror for the UV data.
28
-
29
* **`GET /health`**
30
* **Description**: Performs a health check and returns a `204 No Content` response if the service is operational.
31
src/app.rs
@@ -43,7 +43,6 @@ pub async fn app(
43
cache,
44
})),
45
"/skin".By(skin_router()),
46
- "/uvs".GET(health_check),
47
"/health".GET(health_check),
48
));
49
0 commit comments