mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
Add inventory plugins for buildah and podman, unit tests and functional CI tests. --------- Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
const express = require('express');
|
|
const app = express();
|
|
|
|
app.get('/predict', (req, res) => {
|
|
// Dummy prediction endpoint
|
|
res.json({ prediction: Math.random() });
|
|
});
|
|
|
|
app.listen(3000, () => console.log('AI prediction API listening on :3000'));
|
|
|
|
|