Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 672 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 672 Bytes

Build Status

NAME

Sixatra - Sinatra-like simple Web Application Framework

SYNOPSIS

unit module MyApp;
use Sixatra;

get '/', -> $c {
    200, [], ['hello'];
};

And run MyApp with crustup as follows:

crustup -e 'use Sixatra; sixatra-app("MyApp");'

DESCRIPTION

Sixatra is ...

AUTHOR

Asato Wakisaka asato.wakisaka@gmail.com

COPYRIGHT AND LICENSE

Copyright 2017 Asato Wakisaka

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.