Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 558 Bytes

File metadata and controls

39 lines (23 loc) · 558 Bytes

NAME

Frame - Bare-bones, real-time web framework (WIP)

SYNOPSIS

use Object::Pad;

use utf8;
use v5.36;

class FrameApp :does(Frame);

method startup {
  $self->routes->get('/', sub ($c) {
    $c->render('Frame works!')
  })
}

FrameApp->new->to_psgi

DESCRIPTION

Frame is

AUTHOR

Ian P Bradley ian.bradley@studiocrabapple.com

COPYRIGHT

Copyright 2023- Ian P Bradley

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO