Add filter to package server and fix templates for devstudio

This commit is contained in:
2025-09-04 04:48:40 -05:00
parent 8bb45eae15
commit 55a15c9d98
17 changed files with 69 additions and 67 deletions

View File

@@ -0,0 +1,12 @@
func WebAppMain(args)
{
return (ctx)=>{
if(ctx.Path == "/")
{
ctx.WithMimeType("text/html").SendText(<h1>Hello, world</h1>);
return true;
}
return false;
};
}