mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-06 03:49:56 +02:00
11 lines
234 B
Perl
Executable file
11 lines
234 B
Perl
Executable file
#! /usr/bin/perl
|
|
# Copyleft Ampache.org
|
|
|
|
# This script loads up the path to the perl module
|
|
#
|
|
|
|
use FindBin qw($Bin);
|
|
use lib "$Bin/../lib/perl/Local/Ampache/blib/lib";
|
|
use Local::Ampache;
|
|
$ampache = new Local::Ampache("$Bin/..");
|
|
|