7 lines
113 B
Python
7 lines
113 B
Python
|
|
|
|
api = RedPrint('hello')
|
|
|
|
@api.route('/hello', methods=['GET'])
|
|
def index():
|
|
return '<H2>Hello , World</H2>' |