Squatting::With::Mount - mount Squatting apps at arbitrary paths


Squatting documentation  | view source Contained in the Squatting distribution.

Index


NAME

Top

Squatting::With::Mount - mount Squatting apps at arbitrary paths

SYNOPSIS

Top

  use App 'With::Mount';
  App->mount('/forum' => 'Ground');
  App->init;

DESCRIPTION

Top

This adds a mount method to your Squatting application that lets you mount other Squatting applications at arbitrary paths within your application.

Squatting used to provide a mount() method by default, but I discovered after the fact that the implementation was flawed. To do it correctly would require that I write a lot more code, so I decided to move the mount method out of the core and into a plugin called Squatting::With::Mount.


Squatting documentation  | view source Contained in the Squatting distribution.