First commit

This commit is contained in:
2024-12-30 05:56:46 -06:00
commit 5c8d97d8d4
20 changed files with 1734 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "Tesses.CrossLang.PackageServer",
"version": "1.0.0.0-prod",
"project_dependencies": [
"./Tesses.CrossLang.Markup"
],
"info": {
"type": "console"
}
}

View File

@@ -0,0 +1,3 @@
<?page() route="/" ?>
<h1>Welcome to the package server</h1>
<?end?>

View File

@@ -0,0 +1,4 @@
func main(args)
{
Net.Http.ListenSimpleWithLoop(Router,4200);
}