File: TLS.pm

package info (click to toggle)
libtwiggy-tls-perl 0.0020-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 164 kB
  • sloc: perl: 1,516; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 249 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package Plack::Handler::Twiggy::TLS;

use strict;
use warnings;

use Twiggy::Server::TLS;

sub new {
    my $class = shift;
    bless {@_}, $class;
}

sub run {
    my ($self, $app) = @_;

    Twiggy::Server::TLS->new(%$self)->run($app);
}
    

1;