#!/usr/bin/env node
import { server, start } from "./server.js";
const app = server();

app.get("/say/hello", function (req, res) {
  res.send("Hello!");
});

app.get("/say/hej", function (req, res) {
  res.send("Hej!");
});

app.get("/bye", function (req, res) {
  res.send("Bye!");
});

app.get("/say", function (req, res) {
  res.send("Hello or Hej?");
});

start(app);
