summaryrefslogtreecommitdiff
path: root/opendc-demo/src/main/kotlin/org/opendc/demo/RunRequest.kt
diff options
context:
space:
mode:
authormjkwiatkowski <mati.rewa@gmail.com>2026-02-15 18:26:59 +0100
committermjkwiatkowski <mati.rewa@gmail.com>2026-02-15 18:26:59 +0100
commit86d35fcec83057e346e4982b5a6908f25342a392 (patch)
tree2a9cbd42582fc87b81e7414a78b43ead51c623aa /opendc-demo/src/main/kotlin/org/opendc/demo/RunRequest.kt
parent213130fdca719d9dc7f29fe7c11acde40e4f964e (diff)
feat: opendc -> postgresql connection worksHEADmaster
Diffstat (limited to 'opendc-demo/src/main/kotlin/org/opendc/demo/RunRequest.kt')
-rw-r--r--opendc-demo/src/main/kotlin/org/opendc/demo/RunRequest.kt29
1 files changed, 29 insertions, 0 deletions
diff --git a/opendc-demo/src/main/kotlin/org/opendc/demo/RunRequest.kt b/opendc-demo/src/main/kotlin/org/opendc/demo/RunRequest.kt
new file mode 100644
index 00000000..e24a0af5
--- /dev/null
+++ b/opendc-demo/src/main/kotlin/org/opendc/demo/RunRequest.kt
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2022 AtLarge Research
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+package org.opendc.demo
+
+public fun runRequest(request: String) {
+ // https://github.com/am-i-helpful/opendc/blob/master/opendc-oda/opendc-oda-experiments/src/main/kotlin/org/opendc/oda/experimentrunner/ODAComputeMonitor.kt
+ // Do this here
+ println("The request is $request\n")
+}