mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
12 lines
191 B
Python
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())
|