Created
June 21, 2021 10:21
-
-
Save gistlyn/06ef31c8572aa6443e7ccc8e1787f8c8 to your computer and use it in GitHub Desktop.
serverevents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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