gitextract_7tuo7p7z/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── Build.ps1 ├── CHANGELOG.md ├── CNAME ├── Falco.sln ├── LICENSE ├── README.md ├── docs/ │ ├── CNAME │ ├── docs/ │ │ ├── authentication.html │ │ ├── cross-site-request-forgery.html │ │ ├── deployment.html │ │ ├── example-basic-rest-api.html │ │ ├── example-dependency-injection.html │ │ ├── example-external-view-engine.html │ │ ├── example-hello-world-mvc.html │ │ ├── example-hello-world.html │ │ ├── example-htmx.html │ │ ├── example-open-api.html │ │ ├── get-started.html │ │ ├── host-configuration.html │ │ ├── index.html │ │ ├── markup.html │ │ ├── migrating-from-v4-to-v5.html │ │ ├── request.html │ │ ├── response.html │ │ └── routing.html │ ├── index.html │ ├── prism.css │ ├── prism.js │ ├── style.css │ └── tachyons.css ├── documentation/ │ ├── authentication.md │ ├── cross-site-request-forgery.md │ ├── deployment.md │ ├── example-basic-rest-api.md │ ├── example-dependency-injection.md │ ├── example-external-view-engine.md │ ├── example-hello-world-mvc.md │ ├── example-hello-world.md │ ├── example-htmx.md │ ├── example-open-api.md │ ├── get-started.md │ ├── host-configuration.md │ ├── markup.md │ ├── migrating-from-v4-to-v5.md │ ├── migrating-from-v5-to-v6.md │ ├── readme.md │ ├── request.md │ ├── response.md │ └── routing.md ├── examples/ │ ├── BasicRestApi/ │ │ ├── BasicRestApi.fs │ │ ├── BasicRestApi.fsproj │ │ └── appsettings.json │ ├── DependencyInjection/ │ │ ├── DependencyInjection.fs │ │ └── DependencyInjection.fsproj │ ├── ExternalViewEngine/ │ │ ├── ExternalViewEngine.fs │ │ └── ExternalViewEngine.fsproj │ ├── Falco.Examples.sln │ ├── HelloWorld/ │ │ ├── HelloWorld.fs │ │ └── HelloWorld.fsproj │ ├── HelloWorldMvc/ │ │ ├── HelloWorldMvc.fs │ │ ├── HelloWorldMvc.fsproj │ │ ├── appsettings.json │ │ └── wwwroot/ │ │ └── style.css │ ├── Htmx/ │ │ ├── Htmx.fs │ │ ├── Htmx.fsproj │ │ └── appsettings.json │ └── OpenApi/ │ ├── OpenApi.fs │ └── OpenApi.fsproj ├── global.json ├── site/ │ ├── Site.fs │ └── Site.fsproj ├── src/ │ └── Falco/ │ ├── Core.fs │ ├── Falco.fsproj │ ├── Multipart.fs │ ├── Request.fs │ ├── RequestData.fs │ ├── RequestValue.fs │ ├── Response.fs │ ├── Routing.fs │ ├── Security.fs │ ├── String.fs │ └── WebApplication.fs └── test/ ├── Falco.IntegrationTests/ │ ├── Falco.IntegrationTests.fsproj │ └── Program.fs ├── Falco.IntegrationTests.App/ │ ├── Falco.IntegrationTests.App.fsproj │ └── Program.fs └── Falco.Tests/ ├── Common.fs ├── Falco.Tests.fsproj ├── MultipartTests.fs ├── Program.fs ├── RequestDataTests.fs ├── RequestTests.fs ├── RequestValueTests.fs ├── ResponseTests.fs ├── RoutingTests.fs ├── SecurityTests.fs ├── StringTests.fs └── WebApplicationTests.fs