Help language development. Donate to The Perl Foundation
A simple YAML router for HTTP::Server::Router
use HTTP::Server::Router::YAML; use HTTP::Server::Async; my $s = HTTP::Server::Async.new; serve $s; route-yaml 'route1.yaml'; $s.listen(True);
--- paths: /test: # this is the path, you can use :placeholders too controller: Whatever #an attempt to require this module will be made sub: test #this is the method in the module that the requests # to path will passed along to
This method expects an HTTP::Server
as an argument and will bind itself to whatever server(s) is supplied.
This method will attempt to parse the yaml file and bind any paths possible
tony-o