#!/usr/bin/env perl use strict; use warnings; use Net::Server::NNTP::Postgres; use Carp; $SIG{ __DIE__ } = sub { Carp::confess( @_ ) }; $SIG{ __WARN__ } = sub { Carp::cluck( @_ ) }; $ENV{TZ} = 'UTC'; # for logging Net::Server::NNTP::Postgres->new()->run();