httpaste/src/httpaste/controller/paste/private.py
Tiara Rodney fdf45fd114 refactor: cleanup
- lazy load backend
- proper config evaluation
- object-orientation of configuration
2022-04-15 01:52:45 +02:00

22 lines
243 B
Python

from httpaste.controller import paste
def search(**kwargs):
"""
"""
return 'Hallo', 200
def get(**kwargs):
"""
"""
return paste.get(**kwargs)
def post(**kwargs):
"""
"""
return paste.post(**kwargs)