server.psgi 159 B

123456789101112
  1. #!/usr/bin/starman
  2. use strict;
  3. use warnings;
  4. #Grab our custom routes
  5. use FindBin::libs;
  6. use TCMS;
  7. $ENV{PSGI_ENGINE} //= 'starman';
  8. our $app = \&TCMS::app;