File: Single.pm

package info (click to toggle)
libmojolicious-perl 0.999926-1%2Bsqueeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,672 kB
  • ctags: 949
  • sloc: perl: 17,391; makefile: 4
file content (42 lines) | stat: -rw-r--r-- 764 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright (C) 2008-2010, Sebastian Riedel.

package Mojo::Transaction::Single;

use strict;
use warnings;

# DEPRECATED in Snowman!
# Use Mojo::Transaction::HTTP instead.
use base 'Mojo::Transaction::HTTP';

1;
__END__

=head1 NAME

Mojo::Transaction::Single - DEPRECATED!

=head1 SYNOPSIS

    # This module is deprecated, use Mojo::Transaction::HTTP instead

=head1 DESCRIPTION

L<Mojo::Transaction::Single> is deprecated, use L<Mojo::Transaction::HTTP>
instead.

=head1 ATTRIBUTES

L<Mojo::Transaction::Single> inherits all attributes from
L<Mojo::Transaction::HTTP>.

=head1 METHODS

L<Mojo::Transaction::Single> inherits all methods from
L<Mojo::Transaction::HTTP>.

=head1 SEE ALSO

L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.

=cut