File: Request.pm

package info (click to toggle)
libmason-plugin-cache-perl 0.05-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: perl: 203; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 198 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
package Mason::Plugin::Cache::Request;
BEGIN {
  $Mason::Plugin::Cache::Request::VERSION = '0.05';
}
use Mason::PluginRole;

method cache () {
    return $self->current_comp_class->cache(@_);
}

1;