Ali RajabNezhad 4e3abf1f61
Add Panther (#1509)
* Add Panther

* Update readme.md
2023-10-01 15:06:15 -05:00

12 lines
202 B
Python

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})