Add Panther (#1509)

* Add Panther

* Update readme.md
This commit is contained in:
Ali RajabNezhad
2023-10-01 23:36:15 +03:30
committed by GitHub
parent 5e53632361
commit 4e3abf1f61
2 changed files with 13 additions and 1 deletions

11
p/Panther.py Normal file
View File

@@ -0,0 +1,11 @@
import sys
from panther import Panther
from panther.app import API
@API()
def hello_world():
return 'Hello World'
app = Panther(__name__, configs=sys.modules[__name__], urls={'/': hello_world})