Files
codeql/python/ql/test/library-tests/web/cherrypy/red.py
2019-02-28 15:24:58 +00:00

12 lines
191 B
Python

import cherrypy
class MultiPath(object):
@cherrypy.expose(['color', 'colour'])
def red(self):
return "RED"
if __name__ == '__main__':
cherrypy.quickstart(MultiPath())