5 lines
175 B
Python
5 lines
175 B
Python
def main():
|
|
# You can return any http status code you like, simply place a comma after
|
|
# your return statement, and typing in the status code.
|
|
return "Not Found\n", 404
|