Sixatra - Sinatra-like simple Web Application Framework
unit module MyApp;
use Sixatra;
get '/', -> $c {
200, [], ['hello'];
};
And run MyApp with crustup as follows:
crustup -e 'use Sixatra; sixatra-app("MyApp");'
Sixatra is ...
Asato Wakisaka asato.wakisaka@gmail.com
Copyright 2017 Asato Wakisaka
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.