Rename Cherry to CherryPy (#1252)

* Rename Cherry.py to CherryPy.py

* Update readme.md
This commit is contained in:
calgary34
2022-01-20 16:28:31 -07:00
committed by GitHub
parent 75903b9d2d
commit f1f93bb8ae
2 changed files with 1 additions and 1 deletions

8
c/CherryPy.py Normal file
View File

@@ -0,0 +1,8 @@
import cherrypy
class HelloWorld(object):
@cherrypy.expose
def index(self):
return "Hello World"
cherrypy.quickstart(HelloWorld())