VOOZH about

URL: https://manpages.org/mojoxtypes/3

⇱ man MojoX::Types (3): MIME Types


MojoX::Types(3) MIME Types

SYNOPSIS


use MojoX::Types;
# New type list
my $types = MojoX::Types->new;
# Get MIME type for ".png"
my $type = $types->type('png');
# Add MIME type for ".foo"
$types->type(foo => 'mojo/foo');

DESCRIPTION

MojoX::Types is a container for types.

ATTRIBUTES

MojoX::Types implements the following attributes.

types

 my $map = $types->types;
 $types = $types->types({png => 'image/png'});

List of types.

METHODS

MojoX::Types inherits all methods from Mojo::Base and implements the following ones.

type

 my $type = $types->type('png');
 $types = $types->type(png => 'image/png');

Get or set type for file extension.