* Cleaned up project.json * Updated README with example on how to deserialize json request body * Added reference to System.Runtime.Serialization.Json as this would seems a common usage * Added C# example files to the /Examples directory
10 lines
157 B
C#
10 lines
157 B
C#
using Fission.DotNetCore.Api;
|
|
|
|
public class FissionFunction
|
|
{
|
|
public string Execute(FissionContext context)
|
|
{
|
|
return "Hello World!";
|
|
}
|
|
}
|