Vars.pm 372 B

1234567891011121314151617
  1. package Trog::Vars;
  2. use strict;
  3. use warnings;
  4. our %content_types = (
  5. plain => "text/plain;",
  6. html => "text/html; charset=UTF-8",
  7. json => "application/json;",
  8. blob => "application/octet-stream;",
  9. );
  10. our %cache_control = (
  11. revalidate => "no-cache, max-age=0",
  12. nocache => "no-store",
  13. static => "public, max-age=604800, immutable",
  14. );