first commit

This commit is contained in:
2025-01-30 18:17:43 -05:00
commit ac281878ce
22 changed files with 622 additions and 0 deletions

3
foobar.py Normal file
View File

@@ -0,0 +1,3 @@
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"]