├── .gitignore ├── CODE_OF_CONDUCT.md ├── Fermyon.Spin.Sdk.sln ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── readme.md ├── samples ├── Fermyon.PetStore │ ├── Fermyon.PetStore.Common │ │ ├── Configuration.cs │ │ ├── Fermyon.PetStore.Common.csproj │ │ ├── FormParser.cs │ │ ├── GenericResponse.cs │ │ ├── HttpRequestExtensions.cs │ │ └── PostgresExtensions.cs │ ├── Fermyon.PetStore.Home │ │ ├── Handler.cs │ │ ├── Project.csproj │ │ └── assets │ │ │ └── Home.html │ ├── Fermyon.PetStore.NewPet │ │ ├── Handler.cs │ │ ├── Project.csproj │ │ ├── assets │ │ │ ├── NewPet.html │ │ │ ├── NewPetCreated.html │ │ │ └── NewPetMissingField.html │ │ └── spin.toml │ ├── Fermyon.PetStore.NewToy │ │ ├── Handler.cs │ │ ├── Project.csproj │ │ └── assets │ │ │ ├── NewToy.html │ │ │ ├── NewToyCreated.html │ │ │ ├── NewToyMissingField.html │ │ │ └── NewToyNoPets.html │ ├── Fermyon.PetStore.Pet │ │ ├── Handler.cs │ │ ├── Project.csproj │ │ └── assets │ │ │ ├── PetNotFound.html │ │ │ └── PetTemplate.html │ ├── Fermyon.PetStore.Pets │ │ ├── Handler.cs │ │ ├── Project.csproj │ │ └── assets │ │ │ └── PetsTemplate.html │ ├── Fermyon.PetStore.Toy │ │ ├── Handler.cs │ │ ├── Project.csproj │ │ └── assets │ │ │ ├── ToyNotFound.html │ │ │ ├── ToyTemplate.html │ │ │ └── mystery-toy.png │ ├── Fermyon.PetStore.Toys │ │ ├── Handler.cs │ │ ├── Project.csproj │ │ └── assets │ │ │ └── ToysTemplate.html │ ├── README.md │ ├── spin.toml │ └── sql │ │ └── schema.sql └── hello-world │ ├── Handler.cs │ ├── HelloWorld.Spin.csproj │ ├── assets │ └── asset-text.txt │ └── spin.toml ├── src ├── Config.cs ├── ConfigInterop.cs ├── Fermyon.Spin.Sdk.csproj ├── HttpInterop.cs ├── HttpOutbound.cs ├── HttpTrigger.cs ├── Interop.cs ├── PostgresInterop.cs ├── PostgresOutbound.cs ├── RedisInterop.cs ├── RedisOutbound.cs ├── build │ ├── Fermyon.Spin.Sdk.props │ └── Fermyon.Spin.Sdk.targets └── native │ ├── host-components.c │ ├── host-components.h │ ├── http-trigger.c │ ├── outbound-pg.c │ ├── outbound-pg.h │ ├── outbound-redis.c │ ├── outbound-redis.h │ ├── spin-config.c │ ├── spin-config.h │ ├── spin-http.c │ ├── spin-http.h │ ├── util.c │ ├── util.h │ ├── wasi-outbound-http.c │ └── wasi-outbound-http.h ├── templates └── http-csharp │ ├── content │ ├── Handler.cs │ ├── Project.csproj │ └── spin.toml │ └── metadata │ └── spin-template.toml └── wit └── ephemeral ├── http-types.wit ├── outbound-pg.wit ├── outbound-redis.wit ├── pg-types.wit ├── rdbms-types.wit ├── redis-types.wit ├── spin-config.wit ├── spin-http.wit └── wasi-outbound-http.wit /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Fermyon.Spin.Sdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/Fermyon.Spin.Sdk.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/Makefile -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/readme.md -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Common/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Common/Configuration.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Common/Fermyon.PetStore.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Common/Fermyon.PetStore.Common.csproj -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Common/FormParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Common/FormParser.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Common/GenericResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Common/GenericResponse.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Common/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Common/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Common/PostgresExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Common/PostgresExtensions.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Home/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Home/Handler.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Home/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Home/Project.csproj -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Home/assets/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Home/assets/Home.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/Handler.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/Project.csproj -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/assets/NewPet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/assets/NewPet.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/assets/NewPetCreated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/assets/NewPetCreated.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/assets/NewPetMissingField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/assets/NewPetMissingField.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewPet/spin.toml -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/Handler.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/Project.csproj -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/assets/NewToy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/assets/NewToy.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/assets/NewToyCreated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/assets/NewToyCreated.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/assets/NewToyMissingField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/assets/NewToyMissingField.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/assets/NewToyNoPets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.NewToy/assets/NewToyNoPets.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Pet/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Pet/Handler.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Pet/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Pet/Project.csproj -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Pet/assets/PetNotFound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Pet/assets/PetNotFound.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Pet/assets/PetTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Pet/assets/PetTemplate.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Pets/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Pets/Handler.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Pets/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Pets/Project.csproj -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Pets/assets/PetsTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Pets/assets/PetsTemplate.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Toy/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Toy/Handler.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Toy/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Toy/Project.csproj -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Toy/assets/ToyNotFound.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Toy/assets/ToyNotFound.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Toy/assets/ToyTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Toy/assets/ToyTemplate.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Toy/assets/mystery-toy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Toy/assets/mystery-toy.png -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Toys/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Toys/Handler.cs -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Toys/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Toys/Project.csproj -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/Fermyon.PetStore.Toys/assets/ToysTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/Fermyon.PetStore.Toys/assets/ToysTemplate.html -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/README.md -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/spin.toml -------------------------------------------------------------------------------- /samples/Fermyon.PetStore/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/Fermyon.PetStore/sql/schema.sql -------------------------------------------------------------------------------- /samples/hello-world/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/hello-world/Handler.cs -------------------------------------------------------------------------------- /samples/hello-world/HelloWorld.Spin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/hello-world/HelloWorld.Spin.csproj -------------------------------------------------------------------------------- /samples/hello-world/assets/asset-text.txt: -------------------------------------------------------------------------------- 1 | Hello from an asset file! 2 | -------------------------------------------------------------------------------- /samples/hello-world/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/samples/hello-world/spin.toml -------------------------------------------------------------------------------- /src/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/Config.cs -------------------------------------------------------------------------------- /src/ConfigInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/ConfigInterop.cs -------------------------------------------------------------------------------- /src/Fermyon.Spin.Sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/Fermyon.Spin.Sdk.csproj -------------------------------------------------------------------------------- /src/HttpInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/HttpInterop.cs -------------------------------------------------------------------------------- /src/HttpOutbound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/HttpOutbound.cs -------------------------------------------------------------------------------- /src/HttpTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/HttpTrigger.cs -------------------------------------------------------------------------------- /src/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/Interop.cs -------------------------------------------------------------------------------- /src/PostgresInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/PostgresInterop.cs -------------------------------------------------------------------------------- /src/PostgresOutbound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/PostgresOutbound.cs -------------------------------------------------------------------------------- /src/RedisInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/RedisInterop.cs -------------------------------------------------------------------------------- /src/RedisOutbound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/RedisOutbound.cs -------------------------------------------------------------------------------- /src/build/Fermyon.Spin.Sdk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/build/Fermyon.Spin.Sdk.props -------------------------------------------------------------------------------- /src/build/Fermyon.Spin.Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/build/Fermyon.Spin.Sdk.targets -------------------------------------------------------------------------------- /src/native/host-components.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/host-components.c -------------------------------------------------------------------------------- /src/native/host-components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/host-components.h -------------------------------------------------------------------------------- /src/native/http-trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/http-trigger.c -------------------------------------------------------------------------------- /src/native/outbound-pg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/outbound-pg.c -------------------------------------------------------------------------------- /src/native/outbound-pg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/outbound-pg.h -------------------------------------------------------------------------------- /src/native/outbound-redis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/outbound-redis.c -------------------------------------------------------------------------------- /src/native/outbound-redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/outbound-redis.h -------------------------------------------------------------------------------- /src/native/spin-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/spin-config.c -------------------------------------------------------------------------------- /src/native/spin-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/spin-config.h -------------------------------------------------------------------------------- /src/native/spin-http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/spin-http.c -------------------------------------------------------------------------------- /src/native/spin-http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/spin-http.h -------------------------------------------------------------------------------- /src/native/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/util.c -------------------------------------------------------------------------------- /src/native/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/util.h -------------------------------------------------------------------------------- /src/native/wasi-outbound-http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/wasi-outbound-http.c -------------------------------------------------------------------------------- /src/native/wasi-outbound-http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/src/native/wasi-outbound-http.h -------------------------------------------------------------------------------- /templates/http-csharp/content/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/templates/http-csharp/content/Handler.cs -------------------------------------------------------------------------------- /templates/http-csharp/content/Project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/templates/http-csharp/content/Project.csproj -------------------------------------------------------------------------------- /templates/http-csharp/content/spin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/templates/http-csharp/content/spin.toml -------------------------------------------------------------------------------- /templates/http-csharp/metadata/spin-template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/templates/http-csharp/metadata/spin-template.toml -------------------------------------------------------------------------------- /wit/ephemeral/http-types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/http-types.wit -------------------------------------------------------------------------------- /wit/ephemeral/outbound-pg.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/outbound-pg.wit -------------------------------------------------------------------------------- /wit/ephemeral/outbound-redis.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/outbound-redis.wit -------------------------------------------------------------------------------- /wit/ephemeral/pg-types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/pg-types.wit -------------------------------------------------------------------------------- /wit/ephemeral/rdbms-types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/rdbms-types.wit -------------------------------------------------------------------------------- /wit/ephemeral/redis-types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/redis-types.wit -------------------------------------------------------------------------------- /wit/ephemeral/spin-config.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/spin-config.wit -------------------------------------------------------------------------------- /wit/ephemeral/spin-http.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/spin-http.wit -------------------------------------------------------------------------------- /wit/ephemeral/wasi-outbound-http.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spinframework/spin-dotnet-sdk/HEAD/wit/ephemeral/wasi-outbound-http.wit --------------------------------------------------------------------------------