NAME Plack::Middleware::Signposting - a base class for Plack implementations of the Signposting protocol SYNOPSIS package Plack::Middleware::Signposting::Foo; use Moo; extends 'Plack::Middleware::Signposting'; sub call { my ($self, $env) = @_; ... my @data = ("0001", $relation, $type); $self->to_link_format(\@data); } METHODS * to_link_format(\@ARRAY) This method produces the format for the link header. MODULES * Plack::Middleware::Signposting::JSON * Plack::Middleware::Signposting::Catmandu AUTHOR Vitali Peil, Nicolas Steenlant, LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO Plack::Middleware