Update README.md

This commit is contained in:
flopetautschnig 2023-05-04 14:03:49 +02:00 committed by GitHub
parent 9a9d9d8c28
commit a820ef1f91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ fn about(req: *Request) Response {
fn writeJson(req: *Request) Response { fn writeJson(req: *Request) Response {
_=req; _=req;
Response.json("[1, 2, 3, 4]"); return Response.json("[1, 2, 3, 4]");
} }
pub fn main() !void { pub fn main() !void {