22 lines
243 B
Python
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)
|