Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Created June 21, 2021 10:21
serverevents
using ServiceStack;
namespace MyApp
{
public class ConfigureServerEvents : IConfigureAppHost
{
public void Configure(IAppHost appHost)
{
appHost.Plugins.Add(new ServerEventsFeature());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment