diff options
| author | mjkwiatkowski <mati.rewa@gmail.com> | 2026-06-18 23:38:00 +0200 |
|---|---|---|
| committer | mjkwiatkowski <mati.rewa@gmail.com> | 2026-06-18 23:38:00 +0200 |
| commit | 54f94861da743cbd72d9755c2fbe4223176d90f4 (patch) | |
| tree | a4c2eddb01662e00a1c17514e9fb1218e8515efc /opendc-common/src/main/kotlin/org/opendc/common/api/ResourceController.kt | |
| parent | 4562f52c9b540944200b33d4ffbd60b3cbc5ee79 (diff) | |
feat: complete system redesign: KafkaComputeMonitor stays, SmartScheduler is working and only HTTPClient remains, the rest will be moved to Python scripts
Diffstat (limited to 'opendc-common/src/main/kotlin/org/opendc/common/api/ResourceController.kt')
| -rw-r--r-- | opendc-common/src/main/kotlin/org/opendc/common/api/ResourceController.kt | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/opendc-common/src/main/kotlin/org/opendc/common/api/ResourceController.kt b/opendc-common/src/main/kotlin/org/opendc/common/api/ResourceController.kt deleted file mode 100644 index cf1d3cac..00000000 --- a/opendc-common/src/main/kotlin/org/opendc/common/api/ResourceController.kt +++ /dev/null @@ -1,30 +0,0 @@ -package org.opendc.common.api - -import org.opendc.common.annotations.Endpoint - -/** - * This class represents the `/resources` endpoint. - * - * @author Mateusz Kwiatkowski - * - * */ - -public class ResourceController { - - /** - * Returns all data analytics for all experiments. - */ - @Endpoint("GET", "/resources") - public fun getResources() { - return - } - - /** - * Returns data analytics for experiment with `id`. - * - * */ - @Endpoint("GET", "/resources") - public fun getResourcesId() { - return - } -}
\ No newline at end of file |
