GitXplorerGitXplorer
t

alternc-wsgi

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
c9a1bb8583cd6c5f1512f79d0f67147d07063abf

initial commit

ttobald committed 2 years ago

README

The README file for this repository.

This package adds the wsgi vhost type to alternc. As entry point the template looks for a file called "wsgi.py".

This is a simple working example :

def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/plain')])
    yield b'Hello, World!\n'