X-Git-Url: https://code.kerkeslager.com/?p=fwx;a=blobdiff_plain;f=main.py;h=d2d758a85a6e450481ab429031bf51b69c2a607a;hp=f0bc2bc2628f50165b7dd543ebda6d3d181f8fe2;hb=HEAD;hpb=75c28fd9b45419e0be516a793e587154a757ba34 diff --git a/main.py b/main.py index f0bc2bc..d2d758a 100644 --- a/main.py +++ b/main.py @@ -1,11 +1,11 @@ -import phial +import fwx def handler(request): - return phial.TextResponse( + return fwx.TextResponse( content='Hello, world\n', ) -app = phial.App(handler) +app = fwx.App(handler) if __name__ == '__main__': from twisted.internet import reactor