Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 8, 2022 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awswithdotnet/41cfefdce3bb6deed7def23a72a83b3d to your computer and use it in GitHub Desktop.
Save awswithdotnet/41cfefdce3bb6deed7def23a72a83b3d to your computer and use it in GitHub Desktop.
sns CloudEventsMessageFormatting
using System;
namespace CloudEventsMessageFormatting.CloudEventsMessageFormatter
{
public class CloudEventsMessageFormatter<TIn> : IMessageFormatter<TIn, String>
{
public String Format(TIn message)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment