summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/htdocs/modules/lua/https.lua
blob: 9393093609b1103f938dea2e077d7d23fdb4e56f (plain)
1
2
3
4
5
6
7
function handle(r)
   if r.is_https then
      r:puts("yep")
   else
      r:puts("nope")
   end
end