Provide .psgi for Plack goodness.
[catagits/Gitalist.git] / lib / Gitalist / URIStructure / WithLog.pm
CommitLineData
b9423b8e 1package Gitalist::URIStructure::WithLog;
2use MooseX::MethodAttributes::Role;
3use namespace::autoclean;
4
5sub log : Chained('find') PathPart('') CaptureArgs(0) {}
6
7sub shortlog : Chained('log') Args(0) {}
8
9sub longlog : Chained('log') PathPart('log') Args(0) {}
10
111;