default-app/app/routes.lua

Tue, 09 Mar 2021 12:16:56 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Tue, 09 Mar 2021 12:16:56 +0000
changeset 0
6279a7d40ae7
permissions
-rw-r--r--

Initial commit

local http = require "net.http";

local routes = {};

function routes.get_()
	return {
		greeting = "Hello world!";
	};
end

return routes;

mercurial